Files
notifications-api/tests/app/__init__.py
T

8 lines
165 B
Python
Raw Normal View History

2016-02-24 17:12:30 +00:00
import os
def load_example_csv(file):
file_path = os.path.join("test_csv_files", "{}.csv".format(file))
with open(file_path) as f:
return f.read()