diff options
author | Alexander Kabui | 2021-03-24 09:41:47 +0300 |
---|---|---|
committer | Alexander Kabui | 2021-03-24 09:41:47 +0300 |
commit | be9c4a39500d7978b4cae7536a5f96c3818d211e (patch) | |
tree | 832712305a73e135bf1d5835457f2d5fe8a34237 /wqflask/tests/unit | |
parent | 8ca8eb18ed8aa35177008bb92d805b9d603aec66 (diff) | |
download | genenetwork2-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.py | 14 |
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 |