diff options
Diffstat (limited to 'test/dummy_test_dummy.py')
-rw-r--r-- | test/dummy_test_dummy.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/dummy_test_dummy.py b/test/dummy_test_dummy.py new file mode 100644 index 0000000..dc46d50 --- /dev/null +++ b/test/dummy_test_dummy.py @@ -0,0 +1,14 @@ +import osdf +# import osdfapp +from osdf.config.loader import load_config_file + + +def test_dummy(): + """Generate time constraints from cm-request.json and cm-policy-response.json""" + try: + load_config_file("DUMMY") + except: + pass + return 1 + + |