diff options
author | BonfaceKilz | 2020-11-11 21:37:04 +0300 |
---|---|---|
committer | GitHub | 2020-11-11 21:37:04 +0300 |
commit | d60d8bbff8fbd032a3cf72559719a7f78881965a (patch) | |
tree | 9ae956af7a43465851e4f786d416755e890337d8 /wqflask/tests/integration | |
parent | 25f7d30b9f052ec5d812bfe3bf9713df850cc267 (diff) | |
parent | dbeefadc25fb2bc6e04b4baa4b35bbbd5298e880 (diff) | |
download | genenetwork2-d60d8bbff8fbd032a3cf72559719a7f78881965a.tar.gz |
Merge pull request #477 from BonfaceKilz/feature/add-glossary-page
Feature/add glossary page
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 |