diff options
author | Alexander Kabui | 2020-11-27 16:11:06 +0300 |
---|---|---|
committer | Alexander Kabui | 2020-11-27 16:11:06 +0300 |
commit | 8485dfd5aa02f451a646f643f503ccb02779430b (patch) | |
tree | 1df6291f98a6be1939a908271f45a6f54639f7b7 /wqflask/tests/integration | |
parent | 77dff447c83a4b0824fe6626d16484cfd826ca77 (diff) | |
parent | 39accba7e31beb6f0df5ddb96fb3062d527b12af (diff) | |
download | genenetwork2-8485dfd5aa02f451a646f643f503ccb02779430b.tar.gz |
Merge branch 'testing' of https://github.com/genenetwork/genenetwork2 into test-regression
Diffstat (limited to 'wqflask/tests/integration')
-rw-r--r-- | wqflask/tests/integration/__init__.py | 0 | ||||
-rw-r--r-- | wqflask/tests/integration/test_markdown_routes.py | 21 |
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 |