aboutsummaryrefslogtreecommitdiff
path: root/wqflask/tests/unit
diff options
context:
space:
mode:
authorAlexander Kabui2021-03-24 09:41:47 +0300
committerAlexander Kabui2021-03-24 09:41:47 +0300
commitbe9c4a39500d7978b4cae7536a5f96c3818d211e (patch)
tree832712305a73e135bf1d5835457f2d5fe8a34237 /wqflask/tests/unit
parent8ca8eb18ed8aa35177008bb92d805b9d603aec66 (diff)
downloadgenenetwork2-be9c4a39500d7978b4cae7536a5f96c3818d211e.tar.gz
initial commit for gn3-correlation api integration
Diffstat (limited to 'wqflask/tests/unit')
-rw-r--r--wqflask/tests/unit/wqflask/correlation/test_correlation_gn3.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/wqflask/tests/unit/wqflask/correlation/test_correlation_gn3.py b/wqflask/tests/unit/wqflask/correlation/test_correlation_gn3.py
new file mode 100644
index 00000000..e1bd6d86
--- /dev/null
+++ b/wqflask/tests/unit/wqflask/correlation/test_correlation_gn3.py
@@ -0,0 +1,14 @@
+"""this module contains tests for code used in integrating to gn3 api"""
+from unittest import TestCase
+from base.data_set import create_dataset
+
+class TestCorrelation(TestCase):
+
+ def test_create_dataset(self):
+ """test for creating datasets"""
+
+ pass
+ def test_fetch_dataset_info(self):
+ """test for fetching dataset info data"""
+
+ pass