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