Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
6f682be8
Kaydet (Commit)
6f682be8
authored
Mar 08, 2010
tarafından
Florent Xicluna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Move some tests from test_macpath to test_genericpath.CommonTest
üst
fed15766
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
10 deletions
+12
-10
test_genericpath.py
Lib/test/test_genericpath.py
+12
-0
test_macpath.py
Lib/test/test_macpath.py
+0
-10
No files found.
Lib/test/test_genericpath.py
Dosyayı görüntüle @
6f682be8
...
@@ -47,6 +47,18 @@ class GenericTest(unittest.TestCase):
...
@@ -47,6 +47,18 @@ class GenericTest(unittest.TestCase):
commonprefix
([
"/home/swen/spam"
,
"/home/swen/spam"
]),
commonprefix
([
"/home/swen/spam"
,
"/home/swen/spam"
]),
"/home/swen/spam"
"/home/swen/spam"
)
)
self
.
assertEqual
(
commonprefix
([
"home:swenson:spam"
,
"home:swen:spam"
]),
"home:swen"
)
self
.
assertEqual
(
commonprefix
([
":home:swen:spam"
,
":home:swen:eggs"
]),
":home:swen:"
)
self
.
assertEqual
(
commonprefix
([
":home:swen:spam"
,
":home:swen:spam"
]),
":home:swen:spam"
)
testlist
=
[
''
,
'abc'
,
'Xbcd'
,
'Xb'
,
'XY'
,
'abcd'
,
testlist
=
[
''
,
'abc'
,
'Xbcd'
,
'Xb'
,
'XY'
,
'abcd'
,
'aXc'
,
'abd'
,
'ab'
,
'aX'
,
'abcX'
]
'aXc'
,
'abd'
,
'ab'
,
'aX'
,
'abcX'
]
...
...
Lib/test/test_macpath.py
Dosyayı görüntüle @
6f682be8
...
@@ -18,16 +18,6 @@ class MacPathTestCase(unittest.TestCase):
...
@@ -18,16 +18,6 @@ class MacPathTestCase(unittest.TestCase):
self
.
assertFalse
(
isabs
(
":foo:bar"
))
self
.
assertFalse
(
isabs
(
":foo:bar"
))
self
.
assertFalse
(
isabs
(
":foo:bar:"
))
self
.
assertFalse
(
isabs
(
":foo:bar:"
))
def
test_commonprefix
(
self
):
commonprefix
=
macpath
.
commonprefix
self
.
assertEqual
(
commonprefix
([
"home:swenson:spam"
,
"home:swen:spam"
]),
"home:swen"
)
self
.
assertEqual
(
commonprefix
([
":home:swen:spam"
,
":home:swen:eggs"
]),
":home:swen:"
)
self
.
assertEqual
(
commonprefix
([
":home:swen:spam"
,
":home:swen:spam"
]),
":home:swen:spam"
)
def
test_split
(
self
):
def
test_split
(
self
):
split
=
macpath
.
split
split
=
macpath
.
split
self
.
assertEqual
(
split
(
"foo:bar"
),
self
.
assertEqual
(
split
(
"foo:bar"
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment