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
16ea19fc
Kaydet (Commit)
16ea19fc
authored
Eyl 21, 2016
tarafından
Berker Peksag
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #25651: Allow falsy values to be used for msg parameter of subTest()
üst
1ddf53d4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
case.py
Lib/unittest/case.py
+3
-2
test_result.py
Lib/unittest/test/test_result.py
+10
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/unittest/case.py
Dosyayı görüntüle @
16ea19fc
...
...
@@ -17,6 +17,7 @@ from .util import (strclass, safe_repr, _count_diff_all_purpose,
__unittest
=
True
_subtest_msg_sentinel
=
object
()
DIFF_OMITTED
=
(
'
\n
Diff is
%
s characters long. '
'Set self.maxDiff to None to see it.'
)
...
...
@@ -497,7 +498,7 @@ class TestCase(object):
result
.
addSuccess
(
test_case
)
@contextlib.contextmanager
def
subTest
(
self
,
msg
=
None
,
**
params
):
def
subTest
(
self
,
msg
=
_subtest_msg_sentinel
,
**
params
):
"""Return a context manager that will return the enclosed block
of code in a subtest identified by the optional message and
keyword parameters. A failure in the subtest marks the test
...
...
@@ -1397,7 +1398,7 @@ class _SubTest(TestCase):
def
_subDescription
(
self
):
parts
=
[]
if
self
.
_message
:
if
self
.
_message
is
not
_subtest_msg_sentinel
:
parts
.
append
(
"[{}]"
.
format
(
self
.
_message
))
if
self
.
params
:
params_desc
=
', '
.
join
(
...
...
Lib/unittest/test/test_result.py
Dosyayı görüntüle @
16ea19fc
...
...
@@ -323,6 +323,16 @@ class Test_TestResult(unittest.TestCase):
'testGetSubTestDescriptionWithoutDocstringAndParams '
'('
+
__name__
+
'.Test_TestResult) (<subtest>)'
)
def
testGetSubTestDescriptionForFalsyValues
(
self
):
expected
=
'testGetSubTestDescriptionForFalsyValues (
%
s.Test_TestResult) [
%
s]'
result
=
unittest
.
TextTestResult
(
None
,
True
,
1
)
for
arg
in
[
0
,
None
,
[]]:
with
self
.
subTest
(
arg
):
self
.
assertEqual
(
result
.
getDescription
(
self
.
_subtest
),
expected
%
(
__name__
,
arg
)
)
def
testGetNestedSubTestDescriptionWithoutDocstring
(
self
):
with
self
.
subTest
(
foo
=
1
):
with
self
.
subTest
(
bar
=
2
):
...
...
Misc/NEWS
Dosyayı görüntüle @
16ea19fc
...
...
@@ -77,6 +77,8 @@ Core and Builtins
Library
-------
- Issue #25651: Allow falsy values to be used for msg parameter of subTest().
- Issue #27932: Prevent memory leak in win32_ver().
- Fix UnboundLocalError in socket._sendfile_use_sendfile.
...
...
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