Skip to content

Commit

Permalink
removed empty tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lzy7071 committed Feb 4, 2020
1 parent b7ae654 commit 53c8b55
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions tests/data_source/test_kegg_org_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,6 @@ def tearDownClass(cls):
shutil.rmtree(cls.cache_dirname)
cls.src.db.drop_collection(cls.src.collection_str)

@unittest.skip('passed')
def test_parse_ids(self):
_ids = self.src.parse_ids()
result = []
i = 0
for i, _id in enumerate(_ids):
if i == self.src.max_entries:
return (result)
result.append(_id)
i += 1
self.assertEqual(result[0], 'hsa')
self.assertEqual(len(result), self.src.max_entries)

@unittest.skip('passed')
def test_parse_html_iter(self):
results = self.src.parse_html_iter()
Expand Down

0 comments on commit 53c8b55

Please sign in to comment.