aboutsummaryrefslogtreecommitdiff
path: root/wqflask/tests/integration/test_markdown_routes.py
diff options
context:
space:
mode:
authorzsloan2020-11-11 13:03:50 -0600
committerzsloan2020-11-11 13:03:50 -0600
commitcd01afec0bbe28bfcd1982cbf03c056a856b1d13 (patch)
tree55c6ed5d7312a9f4f4eb32fd0ae1144540f8b0ee /wqflask/tests/integration/test_markdown_routes.py
parent06102cab4b6a3bc898c65c6df485f328e3314980 (diff)
parentd60d8bbff8fbd032a3cf72559719a7f78881965a (diff)
downloadgenenetwork2-cd01afec0bbe28bfcd1982cbf03c056a856b1d13.tar.gz
Merge branch 'testing' of github.com:genenetwork/genenetwork2 into testing
Diffstat (limited to 'wqflask/tests/integration/test_markdown_routes.py')
-rw-r--r--wqflask/tests/integration/test_markdown_routes.py21
1 files changed, 21 insertions, 0 deletions
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