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
455f2961
Kaydet (Commit)
455f2961
authored
Mar 19, 2013
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#17464: improve pydoc test coverage.
Patch by Matt Bachmann.
üst
41518b4a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
1 deletion
+26
-1
test_pydoc.py
Lib/test/test_pydoc.py
+25
-0
ACKS
Misc/ACKS
+1
-1
No files found.
Lib/test/test_pydoc.py
Dosyayı görüntüle @
455f2961
...
@@ -395,6 +395,31 @@ class PydocDocTest(unittest.TestCase):
...
@@ -395,6 +395,31 @@ class PydocDocTest(unittest.TestCase):
synopsis
=
pydoc
.
synopsis
(
TESTFN
,
{})
synopsis
=
pydoc
.
synopsis
(
TESTFN
,
{})
self
.
assertEqual
(
synopsis
,
'line 1: h
\xe9
'
)
self
.
assertEqual
(
synopsis
,
'line 1: h
\xe9
'
)
def
test_splitdoc_with_description
(
self
):
example_string
=
"I Am A Doc
\n\n\n
Here is my description"
self
.
assertEqual
(
pydoc
.
splitdoc
(
example_string
),
(
'I Am A Doc'
,
'
\n
Here is my description'
))
def
test_is_object_or_method
(
self
):
doc
=
pydoc
.
Doc
()
# Bound Method
self
.
assertTrue
(
pydoc
.
_is_some_method
(
doc
.
fail
))
# Method Descriptor
self
.
assertTrue
(
pydoc
.
_is_some_method
(
int
.
__add__
))
# String
self
.
assertFalse
(
pydoc
.
_is_some_method
(
"I am not a method"
))
def
test_is_package_when_not_package
(
self
):
with
test
.
support
.
temp_cwd
()
as
test_dir
:
self
.
assertFalse
(
pydoc
.
ispackage
(
test_dir
))
def
test_is_package_when_is_package
(
self
):
with
test
.
support
.
temp_cwd
()
as
test_dir
:
init_path
=
os
.
path
.
join
(
test_dir
,
'__init__.py'
)
open
(
init_path
,
'w'
)
.
close
()
self
.
assertTrue
(
pydoc
.
ispackage
(
test_dir
))
os
.
remove
(
init_path
)
class
PydocImportTest
(
unittest
.
TestCase
):
class
PydocImportTest
(
unittest
.
TestCase
):
...
...
Misc/ACKS
Dosyayı görüntüle @
455f2961
...
@@ -56,6 +56,7 @@ John Aycock
...
@@ -56,6 +56,7 @@ John Aycock
Donovan Baarda
Donovan Baarda
Arne Babenhauserheide
Arne Babenhauserheide
Attila Babo
Attila Babo
Matt Bachmann
Marcin Bachry
Marcin Bachry
Alfonso Baciero
Alfonso Baciero
Dwayne Bailey
Dwayne Bailey
...
@@ -1364,4 +1365,3 @@ Cheng Zhang
...
@@ -1364,4 +1365,3 @@ Cheng Zhang
Kai Zhu
Kai Zhu
Tarek Ziadé
Tarek Ziadé
Peter Åstrand
Peter Åstrand
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