mirror of
https://github.com/tbabej/taskwiki.git
synced 2025-08-19 06:43:06 +02:00
tests: Add cases with spaces to to_args coverage
This commit is contained in:
parent
9a856d9660
commit
7de0fad097
1 changed files with 2 additions and 0 deletions
|
@ -15,6 +15,8 @@ def test_modstring_to_args():
|
|||
assert util.tw_modstring_to_args("project:Random") == ["project:Random"]
|
||||
assert util.tw_modstring_to_args("project:Random area:admin") == ["project:Random", "area:admin"]
|
||||
assert util.tw_modstring_to_args("project:Random +test") == ["project:Random", "+test"]
|
||||
assert util.tw_modstring_to_args("project:Random +test") == ["project:Random", "+test"]
|
||||
assert util.tw_modstring_to_args("project:Random due:now") == ["project:Random", "due:now"]
|
||||
assert util.tw_modstring_to_args("project:'Random +test'") == ["project:Random +test"]
|
||||
|
||||
def test_modstring_to_kwargs():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue