def test_collectionsDF(self): from pyEX import collectionsDF with patch('requests.get') as mock: mock.return_value = MagicMock() mock.return_value.status_code = 200 mock.return_value.json = MagicMock(return_value=[]) collectionsDF('sector', 'Health Care')
def test_collectionsDF(self): from pyEX import collectionsDF with patch("requests.get") as mock, patch("pickle.dump"): mock.return_value = MagicMock() mock.return_value.status_code = 200 mock.return_value.json = MagicMock(return_value=[]) collectionsDF("sector", "Health Care")
def test_collectionsDF(self): from pyEX import collectionsDF collectionsDF('sector', 'Health Care')