Skip to content

Commit

Permalink
fixed taxa module test
Browse files Browse the repository at this point in the history
  • Loading branch information
sckott committed May 12, 2016
1 parent feb72ff commit fe4f9a8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 10 additions & 0 deletions test/test-taxa.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
"""Tests for taxa module - search methods"""
import os
from pyobis import taxa

def test_search():
"taxa.search - basic test"
res = taxa.search(scientificname = 'Mola mola')
assert 'dict' == res.__class__.__name__
assert 5 == len(res)
assert list == list(res.keys()).__class__
10 changes: 0 additions & 10 deletions test/test-taxon.py

This file was deleted.

0 comments on commit fe4f9a8

Please sign in to comment.