I have the following simplified class I'm mocking:
class myClass(object):
@staticmethod
def A():
#...
def check(self):
#code...
value = self.A()
#more code...
In my first test I mock only the method A
from django.test import TestCase
from mock import MagicMock
import myClass
class FirstTest(TestCase):
def setUp(self):
myClass.A = MagicMock(return_value = 'CPU')
def test(self):
#some tests
myClassObj = myClass()
myClassObj.check()
Whereas in my second test I mock the entire check method:
from django.test import TestCase
from mock import MagicMock
import myClass
class SecondTest(TestCase):
def setUp(self):
myClass.check = MagicMock(return_value = someObject)
def test(self):
#some tests
myClassObj = myClass()
myClassObj.check()
Now my assertions from my first test fail because, instead of calling check()
and mocking A()
inside check()
, it calls the completely mocked check()
from my second test.
Is there any way to clear and set the method to be 'normal' after the test? I tried myClass.check.reset_mock()
already, but it doesn't seem to do anything. Moving the order of my tests doesn't do anything either.
I'm using mock 1.0b1 for python from http://pypi.python.org/pypi/mock/