aboutsummaryrefslogtreecommitdiff
path: root/tests/integration
diff options
context:
space:
mode:
authorAlexander Kabui2021-04-06 22:30:02 +0300
committerAlexander Kabui2021-04-06 22:30:02 +0300
commitea610aa797d4c859fa9b9fa59a1eaa86ff7fd41c (patch)
tree86131edaf05446afcff702d9215b627a0759a501 /tests/integration
parenta301093ce9ea825606db29bd1f1f40e1971897dd (diff)
downloadgenenetwork3-ea610aa797d4c859fa9b9fa59a1eaa86ff7fd41c.tar.gz
delete unnecessary functions and comments
Diffstat (limited to 'tests/integration')
-rw-r--r--tests/integration/test_traits.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/integration/test_traits.py b/tests/integration/test_traits.py
index 7cf0a9f..426bdd7 100644
--- a/tests/integration/test_traits.py
+++ b/tests/integration/test_traits.py
@@ -12,12 +12,6 @@ class TraitIntegrationTest(TestCase):
def setUp(self):
self.app = create_app().test_client()
- def test_home(self):
- """test for initial endpoint for trait"""
- results = self.app.get("/api/trait", follow_redirects=True)
-
- self.assertEqual(200, results.status_code)
-
@mock.patch("gn3.api.traits.fetch_trait")
def test_create_trait(self, mock_fetch_trait):
"""test the endpoint for creating traits\