I have a function that returns smb.SMBConnection object.
In my_module.py
from smb.SMBConnection import SMBConnection
def get_connection(user, pwd, server):
return SMBConnection(user, pwd, socket.gethostname(), server, use_ntlm_v2=True)
I am trying to use mock.patch
@mock.patch(‘smb.SMBConnection.SMBConnection’)
def test_get_connection(self, mock_class):
self.assertEquals(mock_class, my_module.get_connection)
But this doesn’t work
Try this example here,