aboutsummaryrefslogtreecommitdiff
path: root/wqflask/tests/integration/test_markdown_routes.py
diff options
context:
space:
mode:
authorBonfaceKilz2020-11-03 22:03:26 +0300
committerBonfaceKilz2020-11-03 22:45:11 +0300
commit74550ef0c76a941c473c8d024ccc0a0403631c49 (patch)
tree9437b42cd6cb7fa23d910547454b242a7195eb24 /wqflask/tests/integration/test_markdown_routes.py
parenta7622fc3d996407799cec166968c1e56baf07ea9 (diff)
downloadgenenetwork2-74550ef0c76a941c473c8d024ccc0a0403631c49.tar.gz
Add basic structure for "/glossary" routes test
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