diff options
author | BonfaceKilz | 2021-05-11 10:06:15 +0300 |
---|---|---|
committer | GitHub | 2021-05-11 10:06:15 +0300 |
commit | 54abe9cce76f620088954bc614d739abecb1ed21 (patch) | |
tree | a91841aff9b883eb6ec04372ea73606e81c994e3 /wqflask/tests | |
parent | 4f826611242080089856ccb4e3a7cda398e57b0d (diff) | |
parent | 56fc1a2a53496a8b3720515f61e54a74cc95821e (diff) | |
download | genenetwork2-54abe9cce76f620088954bc614d739abecb1ed21.tar.gz |
Merge pull request #563 from Alexanderlacuna/feature/integrate-correlation-api
Feature/integrate correlation api
Diffstat (limited to 'wqflask/tests')
-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 |