diff --git a/force_bdss/tests/fixtures/__init__.py b/force_bdss/tests/fixtures/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..1c5217a644894c316685b8c0a509c29173d760a8 --- /dev/null +++ b/force_bdss/tests/fixtures/__init__.py @@ -0,0 +1,5 @@ +from os.path import join, dirname, abspath + + +def get(filename): + return join(dirname(abspath(__file__)), filename) diff --git a/force_bdss/cli/tests/fixtures/foo.csv b/force_bdss/tests/fixtures/foo.csv similarity index 100% rename from force_bdss/cli/tests/fixtures/foo.csv rename to force_bdss/tests/fixtures/foo.csv diff --git a/force_bdss/cli/tests/fixtures/test_csv.json b/force_bdss/tests/fixtures/test_csv.json similarity index 100% rename from force_bdss/cli/tests/fixtures/test_csv.json rename to force_bdss/tests/fixtures/test_csv.json diff --git a/force_bdss/cli/tests/fixtures/test_csv_corrupted.json b/force_bdss/tests/fixtures/test_csv_corrupted.json similarity index 100% rename from force_bdss/cli/tests/fixtures/test_csv_corrupted.json rename to force_bdss/tests/fixtures/test_csv_corrupted.json diff --git a/force_bdss/cli/tests/fixtures/test_csv_v2.json b/force_bdss/tests/fixtures/test_csv_v2.json similarity index 100% rename from force_bdss/cli/tests/fixtures/test_csv_v2.json rename to force_bdss/tests/fixtures/test_csv_v2.json