diff --git a/test/test.py b/test/test.py deleted file mode 100644 index 6bfc8b6..0000000 --- a/test/test.py +++ /dev/null @@ -1,12 +0,0 @@ -from qubed import Qube - -q = Qube.from_dict({ - "class=od" : { - "expver=0001": {"param=1":{}, "param=2":{}}, - "expver=0002": {"param=1":{}, "param=2":{}}, - }, - "class=rd" : { - "expver=0001": {"param=1":{}, "param=2":{}, "param=3":{}}, - "expver=0002": {"param=1":{}, "param=2":{}}, - }, -}) \ No newline at end of file diff --git a/test/data/fdb_list_compact.gz b/tests/data/fdb_list_compact.gz similarity index 100% rename from test/data/fdb_list_compact.gz rename to tests/data/fdb_list_compact.gz diff --git a/test/data/fdb_list_porcelain.gz b/tests/data/fdb_list_porcelain.gz similarity index 100% rename from test/data/fdb_list_porcelain.gz rename to tests/data/fdb_list_porcelain.gz diff --git a/test/data/mars_list.gz b/tests/data/mars_list.gz similarity index 100% rename from test/data/mars_list.gz rename to tests/data/mars_list.gz diff --git a/tests/test_smoke.py b/tests/test_smoke.py new file mode 100644 index 0000000..f384ac8 --- /dev/null +++ b/tests/test_smoke.py @@ -0,0 +1,14 @@ +from qubed import Qube + + +def test_smoke(): + q = Qube.from_dict({ + "class=od" : { + "expver=0001": {"param=1":{}, "param=2":{}}, + "expver=0002": {"param=1":{}, "param=2":{}}, + }, + "class=rd" : { + "expver=0001": {"param=1":{}, "param=2":{}, "param=3":{}}, + "expver=0002": {"param=1":{}, "param=2":{}}, + }, + }) \ No newline at end of file