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
69c955f0
Kaydet (Commit)
69c955f0
authored
Nis 06, 2007
tarafından
Collin Winter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Convert test_module to use unittest.
üst
fef1dcf4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
58 additions
and
45 deletions
+58
-45
test_module.py
Lib/test/test_module.py
+58
-45
No files found.
Lib/test/test_module.py
Dosyayı görüntüle @
69c955f0
# Test the module type
from
test.test_support
import
ver
ify
,
vereq
,
verbose
,
TestFailed
import
unittest
from
test.test_support
import
ver
bose
,
run_unittest
import
sys
module
=
type
(
sys
)
# An uninitialized module has no __dict__ or __name__, and __doc__ is None
foo
=
module
.
__new__
(
module
)
verify
(
foo
.
__dict__
is
None
)
try
:
s
=
foo
.
__name__
except
AttributeError
:
pass
else
:
raise
TestFailed
,
"__name__ =
%
s"
%
repr
(
s
)
vereq
(
foo
.
__doc__
,
module
.
__doc__
)
# Regularly initialized module, no docstring
foo
=
module
(
"foo"
)
vereq
(
foo
.
__name__
,
"foo"
)
vereq
(
foo
.
__doc__
,
None
)
vereq
(
foo
.
__dict__
,
{
"__name__"
:
"foo"
,
"__doc__"
:
None
})
# ASCII docstring
foo
=
module
(
"foo"
,
"foodoc"
)
vereq
(
foo
.
__name__
,
"foo"
)
vereq
(
foo
.
__doc__
,
"foodoc"
)
vereq
(
foo
.
__dict__
,
{
"__name__"
:
"foo"
,
"__doc__"
:
"foodoc"
})
# Unicode docstring
foo
=
module
(
"foo"
,
u"foodoc
\u1234
"
)
vereq
(
foo
.
__name__
,
"foo"
)
vereq
(
foo
.
__doc__
,
u"foodoc
\u1234
"
)
vereq
(
foo
.
__dict__
,
{
"__name__"
:
"foo"
,
"__doc__"
:
u"foodoc
\u1234
"
})
# Reinitialization should not replace the __dict__
foo
.
bar
=
42
d
=
foo
.
__dict__
foo
.
__init__
(
"foo"
,
"foodoc"
)
vereq
(
foo
.
__name__
,
"foo"
)
vereq
(
foo
.
__doc__
,
"foodoc"
)
vereq
(
foo
.
bar
,
42
)
vereq
(
foo
.
__dict__
,
{
"__name__"
:
"foo"
,
"__doc__"
:
"foodoc"
,
"bar"
:
42
})
verify
(
foo
.
__dict__
is
d
)
if
verbose
:
print
"All OK"
ModuleType
=
type
(
sys
)
class
ModuleTests
(
unittest
.
TestCase
):
def
test_uninitialized
(
self
):
# An uninitialized module has no __dict__ or __name__,
# and __doc__ is None
foo
=
ModuleType
.
__new__
(
ModuleType
)
self
.
failUnless
(
foo
.
__dict__
is
None
)
try
:
s
=
foo
.
__name__
self
.
fail
(
"__name__ =
%
s"
%
repr
(
s
))
except
AttributeError
:
pass
self
.
assertEqual
(
foo
.
__doc__
,
ModuleType
.
__doc__
)
def
test_no_docstring
(
self
):
# Regularly initialized module, no docstring
foo
=
ModuleType
(
"foo"
)
self
.
assertEqual
(
foo
.
__name__
,
"foo"
)
self
.
assertEqual
(
foo
.
__doc__
,
None
)
self
.
assertEqual
(
foo
.
__dict__
,
{
"__name__"
:
"foo"
,
"__doc__"
:
None
})
def
test_ascii_docstring
(
self
):
# ASCII docstring
foo
=
ModuleType
(
"foo"
,
"foodoc"
)
self
.
assertEqual
(
foo
.
__name__
,
"foo"
)
self
.
assertEqual
(
foo
.
__doc__
,
"foodoc"
)
self
.
assertEqual
(
foo
.
__dict__
,
{
"__name__"
:
"foo"
,
"__doc__"
:
"foodoc"
})
def
test_unicode_docstring
(
self
):
# Unicode docstring
foo
=
ModuleType
(
"foo"
,
u"foodoc
\u1234
"
)
self
.
assertEqual
(
foo
.
__name__
,
"foo"
)
self
.
assertEqual
(
foo
.
__doc__
,
u"foodoc
\u1234
"
)
self
.
assertEqual
(
foo
.
__dict__
,
{
"__name__"
:
"foo"
,
"__doc__"
:
u"foodoc
\u1234
"
})
def
test_reinit
(
self
):
# Reinitialization should not replace the __dict__
foo
=
ModuleType
(
"foo"
,
u"foodoc
\u1234
"
)
foo
.
bar
=
42
d
=
foo
.
__dict__
foo
.
__init__
(
"foo"
,
"foodoc"
)
self
.
assertEqual
(
foo
.
__name__
,
"foo"
)
self
.
assertEqual
(
foo
.
__doc__
,
"foodoc"
)
self
.
assertEqual
(
foo
.
bar
,
42
)
self
.
assertEqual
(
foo
.
__dict__
,
{
"__name__"
:
"foo"
,
"__doc__"
:
"foodoc"
,
"bar"
:
42
})
self
.
failUnless
(
foo
.
__dict__
is
d
)
def
test_main
():
run_unittest
(
ModuleTests
)
if
__name__
==
'__main__'
:
test_main
()
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