def setUp(self):
with open("test.csv", "w") as f:
f.write(CSV_CONTENT)
httpretty.enable()
httpretty.register_uri(
httpretty.GET,
"http://test.gf/csv",
body=CSV_CONTENT,
content_type="text/plain"
)