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