6 lines
188 B
Python
6 lines
188 B
Python
|
from mlstmyfasta.engine.annotations import fetch_ncbi_genbank
|
||
|
|
||
|
|
||
|
async def test_fetch_ncbi_genbank_with_id_works():
|
||
|
assert len((await fetch_ncbi_genbank("CP011448.1")).coding) > 0
|
||
|
|