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
8b2cd75b
Kaydet (Commit)
8b2cd75b
authored
Nis 07, 2013
tarafından
Andrew Svetlov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Process DEFAULT values in mock side_effect that returns iterator.
Patch by Michael Ford.
üst
595365de
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
mock.py
Lib/unittest/mock.py
+2
-0
testmock.py
Lib/unittest/test/testmock/testmock.py
+4
-0
No files found.
Lib/unittest/mock.py
Dosyayı görüntüle @
8b2cd75b
...
...
@@ -904,6 +904,8 @@ class CallableMixin(Base):
result
=
next
(
effect
)
if
_is_exception
(
result
):
raise
result
if
result
is
DEFAULT
:
result
=
self
.
return_value
return
result
ret_val
=
effect
(
*
args
,
**
kwargs
)
...
...
Lib/unittest/test/testmock/testmock.py
Dosyayı görüntüle @
8b2cd75b
...
...
@@ -906,6 +906,10 @@ class MockTest(unittest.TestCase):
self
.
assertRaises
(
StopIteration
,
mock
)
self
.
assertIs
(
mock
.
side_effect
,
this_iter
)
def
test_side_effect_iterator_default
(
self
):
mock
=
Mock
(
return_value
=
2
)
mock
.
side_effect
=
iter
([
1
,
DEFAULT
])
self
.
assertEqual
([
mock
(),
mock
()],
[
1
,
2
])
def
test_assert_has_calls_any_order
(
self
):
mock
=
Mock
()
...
...
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