diff options
author | Alexander Kabui | 2021-04-06 22:30:02 +0300 |
---|---|---|
committer | Alexander Kabui | 2021-04-06 22:30:02 +0300 |
commit | ea610aa797d4c859fa9b9fa59a1eaa86ff7fd41c (patch) | |
tree | 86131edaf05446afcff702d9215b627a0759a501 /tests/integration | |
parent | a301093ce9ea825606db29bd1f1f40e1971897dd (diff) | |
download | genenetwork3-ea610aa797d4c859fa9b9fa59a1eaa86ff7fd41c.tar.gz |
delete unnecessary functions and comments
Diffstat (limited to 'tests/integration')
-rw-r--r-- | tests/integration/test_traits.py | 6 |
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\ |