From ea610aa797d4c859fa9b9fa59a1eaa86ff7fd41c Mon Sep 17 00:00:00 2001 From: Alexander Kabui Date: Tue, 6 Apr 2021 22:30:02 +0300 Subject: delete unnecessary functions and comments --- tests/integration/test_traits.py | 6 ------ tests/unit/computations/test_trait.py | 6 ------ 2 files changed, 12 deletions(-) (limited to 'tests') 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\ diff --git a/tests/unit/computations/test_trait.py b/tests/unit/computations/test_trait.py index 49c08d4..cdd8078 100644 --- a/tests/unit/computations/test_trait.py +++ b/tests/unit/computations/test_trait.py @@ -2,7 +2,6 @@ from unittest import TestCase from unittest import mock -from gn3.computations.traits import compute_sum from gn3.computations.traits import fetch_trait from gn3.computations.traits import get_trait_sample_data from gn3.computations.traits import get_trait_info_data @@ -11,11 +10,6 @@ from gn3.computations.traits import get_trait_info_data class TestTrait(TestCase): """class contains tests for creating traits""" - def test_sum(self): - """initial faling tests""" - results = compute_sum(2, 5) - self.assertEqual(results, 7) - @mock.patch("gn3.computations.traits.get_trait_sample_data") def test_fetch_trait(self, get_sample_data): """test for creating/fetching trait""" -- cgit v1.2.3