about summary refs log tree commit diff stats
path: root/tests/test_cmd_account.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_cmd_account.c')
-rw-r--r--tests/test_cmd_account.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/test_cmd_account.c b/tests/test_cmd_account.c
index ee4fb673..33568bf8 100644
--- a/tests/test_cmd_account.c
+++ b/tests/test_cmd_account.c
@@ -84,3 +84,20 @@ void cmd_account_show_shows_usage_when_no_arg(void **state)
 
     free(help);
 }
+
+void cmd_account_show_shows_message_when_account_does_not_exist(void **state)
+{
+    CommandHelp *help = malloc(sizeof(CommandHelp));
+    gchar *args[] = { "show", "account_name" };
+
+    expect_string(accounts_get_account, name, "account_name");
+    will_return(accounts_get_account, NULL);
+
+    expect_string(cons_show, output, "No such account.");
+    expect_string(cons_show, output, "");
+
+    gboolean result = cmd_account(args, *help);
+    assert_true(result);
+
+    free(help);
+}