aboutsummaryrefslogtreecommitdiff
path: root/wqflask/tests
diff options
context:
space:
mode:
authorAlexander Kabui2021-07-12 12:27:45 +0300
committerAlexander Kabui2021-07-12 12:27:45 +0300
commit8b565a25b643e7ad653cb2c17d6456d073245dc5 (patch)
tree961cf33072c6089583f87d39539c53e0d5dd986a /wqflask/tests
parent3a9ef933faec1f14560b1f6ced9fcd4413089770 (diff)
parent344d6a86d2e468249ec7b583e8c0751f99cd6a5b (diff)
downloadgenenetwork2-8b565a25b643e7ad653cb2c17d6456d073245dc5.tar.gz
fix merge conflict
Diffstat (limited to 'wqflask/tests')
-rw-r--r--wqflask/tests/integration/test_markdown_routes.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/wqflask/tests/integration/test_markdown_routes.py b/wqflask/tests/integration/test_markdown_routes.py
deleted file mode 100644
index 5e3e5045..00000000
--- a/wqflask/tests/integration/test_markdown_routes.py
+++ /dev/null
@@ -1,21 +0,0 @@
-"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