Is there any way to disconect models signals in test mode Django 1.11 ?
Or maybe a way to create an object without ORM to prevent dispaching signal from the post_save
method ?
setup test code
def setUp(self):
#some code
with patch(post_save):
self.instance = Instance.objects.create(fields)
error : AttributeError: 'ModelSignal' object has no attribute 'rsplit'