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
da2bf9f6
Kaydet (Commit)
da2bf9f6
authored
Eki 12, 2018
tarafından
Bruno Oliveira
Kaydeden (comit)
Berker Peksag
Eki 12, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-34900: Make TestCase.debug() work with subtests (GH-9707)
üst
4505f65a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
1 deletion
+17
-1
case.py
Lib/unittest/case.py
+1
-1
test_case.py
Lib/unittest/test/test_case.py
+14
-0
2018-10-05-05-55-53.bpo-34900.8RNiFu.rst
...S.d/next/Library/2018-10-05-05-55-53.bpo-34900.8RNiFu.rst
+2
-0
No files found.
Lib/unittest/case.py
Dosyayı görüntüle @
da2bf9f6
...
...
@@ -514,7 +514,7 @@ class TestCase(object):
case as failed but resumes execution at the end of the enclosed
block, allowing further test code to be executed.
"""
if
not
self
.
_outcome
.
result_supports_subtests
:
if
self
.
_outcome
is
None
or
not
self
.
_outcome
.
result_supports_subtests
:
yield
return
parent
=
self
.
_subtest
...
...
Lib/unittest/test/test_case.py
Dosyayı görüntüle @
da2bf9f6
...
...
@@ -425,6 +425,20 @@ class Test_TestCase(unittest.TestCase, TestEquality, TestHashing):
expected
=
[
'a1'
,
'a2'
,
'b1'
]
self
.
assertEqual
(
events
,
expected
)
def
test_subtests_debug
(
self
):
# Test debug() with a test that uses subTest() (bpo-34900)
events
=
[]
class
Foo
(
unittest
.
TestCase
):
def
test_a
(
self
):
events
.
append
(
'test case'
)
with
self
.
subTest
():
events
.
append
(
'subtest 1'
)
Foo
(
'test_a'
)
.
debug
()
self
.
assertEqual
(
events
,
[
'test case'
,
'subtest 1'
])
# "This class attribute gives the exception raised by the test() method.
# If a test framework needs to use a specialized exception, possibly to
# carry additional information, it must subclass this exception in
...
...
Misc/NEWS.d/next/Library/2018-10-05-05-55-53.bpo-34900.8RNiFu.rst
0 → 100644
Dosyayı görüntüle @
da2bf9f6
Fixed :meth:`unittest.TestCase.debug` when used to call test methods with
subtests. Patch by Bruno Oliveira.
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