diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_vgstash_cli.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/test_vgstash_cli.py b/tests/test_vgstash_cli.py index f34f2d1..831fe80 100644 --- a/tests/test_vgstash_cli.py +++ b/tests/test_vgstash_cli.py @@ -206,6 +206,15 @@ def test_notes(): )) +def test_notes_empty(): + runner = CliRunner() + result = runner.invoke(vgstash_cli.cli, ['notes', 'Super Mario Bros.', 'NES']) + if verbose: + print(result.output) + assert result.exit_code == 0 + assert result.output == "No notes for Super Mario Bros. on NES.\n" + + def test_notes_edit(): if not interactive: return |