Skip to content

Commit

Permalink
Add a sample sniff test for new Mothur datatype.
Browse files Browse the repository at this point in the history
The existing sniffer tests with the mothur stuff tests the sniffers in isolation - this is more of an integration test that tests the sample datatype configuration for the newly added mothur stuff.
  • Loading branch information
jmchilton committed Apr 27, 2016
1 parent d47f8f5 commit d73a86d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/galaxy/datatypes/sniff.py
Expand Up @@ -343,6 +343,9 @@ def guess_ext( fname, sniff_order, is_multi_byte=False ):
>>> fname = get_test_fname('5e5z.pdb')
>>> guess_ext(fname, sniff_order)
'pdb'
>>> fname = get_test_fname('mothur_datatypetest_true.mothur.otu')
>>> guess_ext(fname, sniff_order)
'mothur.otu'
"""
for datatype in sniff_order:
"""
Expand Down

0 comments on commit d73a86d

Please sign in to comment.