aboutsummaryrefslogtreecommitdiff
path: root/wqflask/tests/integration
diff options
context:
space:
mode:
authorzsloan2020-11-12 17:20:39 -0600
committerzsloan2020-11-12 17:20:39 -0600
commit0b47b750549915f2655d3807f5131837ddf8ccc8 (patch)
tree814173cb4904177e8e125011ae8abce69ef12f04 /wqflask/tests/integration
parente20d5f41d076659706442a8ab1db93cd65c9cb0f (diff)
parentcd01afec0bbe28bfcd1982cbf03c056a856b1d13 (diff)
downloadgenenetwork2-0b47b750549915f2655d3807f5131837ddf8ccc8.tar.gz
Merge branch 'testing' of github.com:genenetwork/genenetwork2 into feature/corr_table_changes
Diffstat (limited to 'wqflask/tests/integration')
-rw-r--r--wqflask/tests/integration/__init__.py0
-rw-r--r--wqflask/tests/integration/test_markdown_routes.py21
2 files changed, 21 insertions, 0 deletions
diff --git a/wqflask/tests/integration/__init__.py b/wqflask/tests/integration/__init__.py
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/wqflask/tests/integration/__init__.py
diff --git a/wqflask/tests/integration/test_markdown_routes.py b/wqflask/tests/integration/test_markdown_routes.py
new file mode 100644
index 00000000..5e3e5045
--- /dev/null
+++ b/wqflask/tests/integration/test_markdown_routes.py
@@ -0,0 +1,21 @@
+"Integration tests for markdown routes"
+import unittest
+
+from bs4 import BeautifulSoup
+
+from wqflask import app
+
+
+class TestGenMenu(unittest.TestCase):
+ """Tests for glossary"""
+
+ def setUp(self):
+ self.app = app.test_client()
+
+ def tearDown(self):
+ pass
+
+ def test_glossary_page(self):
+ """Test that the glossary page is rendered properly"""
+ response = self.app.get('/glossary', follow_redirects=True)
+ pass