diff options
| author | zlg <zlg@zlg.space> | 2018-10-18 21:02:53 -0700 | 
|---|---|---|
| committer | zlg <zlg@zlg.space> | 2018-10-18 21:02:53 -0700 | 
| commit | 69373e362637b5e89ee347c9874f5f8c4ec6a294 (patch) | |
| tree | d6ef21d2f8b3e105f1375680081f6ae3096f401b | |
| parent | README: expand on usage, cover shell quoting (diff) | |
| download | vgstash-69373e362637b5e89ee347c9874f5f8c4ec6a294.tar.gz vgstash-69373e362637b5e89ee347c9874f5f8c4ec6a294.tar.bz2 vgstash-69373e362637b5e89ee347c9874f5f8c4ec6a294.tar.xz vgstash-69373e362637b5e89ee347c9874f5f8c4ec6a294.zip | |
cli: show msg if game to be deleted is not in DB
| -rw-r--r-- | src/vgstash_cli.py | 2 | ||||
| -rw-r--r-- | tests/test_vgstash_cli.py | 12 | 
2 files changed, 12 insertions, 2 deletions
| diff --git a/src/vgstash_cli.py b/src/vgstash_cli.py index c8e8d24..7996086 100644 --- a/src/vgstash_cli.py +++ b/src/vgstash_cli.py @@ -145,6 +145,8 @@ def delete_game(title, system):      target_game = vgstash.Game(title, system)      if db.delete_game(target_game):          click.echo("Removed {} for {} from your collection.".format(title, system)) +    else: +        click.echo("That game does not exist in your collection. Please try again.")  @cli.command('update') diff --git a/tests/test_vgstash_cli.py b/tests/test_vgstash_cli.py index 831fe80..c3b60d6 100644 --- a/tests/test_vgstash_cli.py +++ b/tests/test_vgstash_cli.py @@ -6,8 +6,6 @@ import vgstash_cli  from click.testing import CliRunner -# TODO: Setup a testing directory for test data and integrate with pytest -  verbose = True  interactive = False @@ -99,6 +97,7 @@ def test_list_filter():          'The Legend of Zelda|NES|2|2|\n',      )) +  def test_list_filter_invalid():      runner = CliRunner()      result = runner.invoke(vgstash_cli.cli, ['list', '-r', 'derp']) @@ -170,6 +169,15 @@ def test_delete():      assert result.output == "Removed Vectorman for Genesis from your collection.\n" +def test_delete_invalid(): +    runner = CliRunner() +    result = runner.invoke(vgstash_cli.cli, ['delete', 'Vectorman 3', 'Genesis']) +    if verbose: +        print(result.output) +    assert result.exit_code == 0 +    assert result.output == "That game does not exist in your collection. Please try again.\n" + +  def test_update():      runner = CliRunner()      result = runner.invoke(vgstash_cli.cli, ['update', 'Super Mario Bros.', 'NES', 'progress', 'c']) | 
