def test_fundOwnership(self): from pyEX import fundOwnership with patch('requests.get') as mock, \ patch('pickle.dump'): mock.return_value = MagicMock() mock.return_value.status_code = 200 fundOwnership('test')
def test_fundOwnership(self): from pyEX import fundOwnership with patch("requests.get") as mock, patch("pickle.dump"): mock.return_value = MagicMock() mock.return_value.status_code = 200 fundOwnership("test")