Skip to content

Commit

Permalink
expand locus/locus_tag parameter tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwengers committed Nov 18, 2021
1 parent 96c8749 commit af20f66
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/test_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,8 @@ def test_proteins_ok(tmpdir):
[
(['--locus']), # not provided
(['--locus', '']), # empty
(['--locus', ' ']), # whitespace only
(['--locus', ' ']), # whitespaces only
(['--locus', 'fo o']) # containing whitespace
]
)
Expand All @@ -209,6 +211,8 @@ def test_locus_failiing(parameters, tmpdir):
[
(['--locus-tag']), # not provided
(['--locus-tag', '']), # empty
(['--locus-tag', ' ']), # whitespace only
(['--locus-tag', ' ']), # whitespaces only
(['--locus-tag', 'fo o']) # containing whitespace
]
)
Expand Down

0 comments on commit af20f66

Please sign in to comment.