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
75963643
Kaydet (Commit)
75963643
authored
Haz 09, 2012
tarafından
Michael Foord
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix exception when calling reset_mock on a mock created with autospec
üst
afc0c77b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
0 deletions
+18
-0
mock.py
Lib/unittest/mock.py
+3
-0
testhelpers.py
Lib/unittest/test/testmock/testhelpers.py
+7
-0
testmagicmethods.py
Lib/unittest/test/testmock/testmagicmethods.py
+8
-0
No files found.
Lib/unittest/mock.py
Dosyayı görüntüle @
75963643
...
...
@@ -510,6 +510,8 @@ class NonCallableMock(Base):
self
.
method_calls
=
_CallList
()
for
child
in
self
.
_mock_children
.
values
():
if
isinstance
(
child
,
_SpecState
):
continue
child
.
reset_mock
()
ret
=
self
.
_mock_return_value
...
...
@@ -664,6 +666,7 @@ class NonCallableMock(Base):
# but not method calls
_check_and_set_parent
(
self
,
value
,
None
,
name
)
setattr
(
type
(
self
),
name
,
value
)
self
.
_mock_children
[
name
]
=
value
elif
name
==
'__class__'
:
self
.
_spec_class
=
value
return
...
...
Lib/unittest/test/testmock/testhelpers.py
Dosyayı görüntüle @
75963643
...
...
@@ -355,6 +355,13 @@ class SpecSignatureTest(unittest.TestCase):
self
.
assertEqual
(
mock
(),
'foo'
)
def
test_autospec_reset_mock
(
self
):
m
=
create_autospec
(
int
)
int
(
m
)
m
.
reset_mock
()
self
.
assertEqual
(
m
.
__int__
.
call_count
,
0
)
def
test_mocking_unbound_methods
(
self
):
class
Foo
(
object
):
def
foo
(
self
,
foo
):
...
...
Lib/unittest/test/testmock/testmagicmethods.py
Dosyayı görüntüle @
75963643
...
...
@@ -345,6 +345,14 @@ class TestMockingMagicMethods(unittest.TestCase):
self
.
assertEqual
(
mock
[
1
][
2
][
3
],
3
)
def
test_magic_method_reset_mock
(
self
):
mock
=
MagicMock
()
str
(
mock
)
self
.
assertTrue
(
mock
.
__str__
.
called
)
mock
.
reset_mock
()
self
.
assertFalse
(
mock
.
__str__
.
called
)
def
test_dir
(
self
):
# overriding the default implementation
for
mock
in
Mock
(),
MagicMock
():
...
...
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