Added tests for "/account enable"

This commit is contained in:
James Booth
2013-12-15 23:51:29 +00:00
parent b2f4570886
commit 4216949b2e
4 changed files with 73 additions and 0 deletions

View File

@@ -7,3 +7,7 @@ void cmd_account_show_shows_message_when_account_exists(void **state);
void cmd_account_add_shows_usage_when_no_arg(void **state);
void cmd_account_add_adds_account(void **state);
void cmd_account_add_shows_message(void **state);
void cmd_account_enable_shows_usage_when_no_arg(void **state);
void cmd_account_enable_enables_account(void **state);
void cmd_account_enable_shows_message_when_enabled(void **state);
void cmd_account_enable_shows_message_when_account_doesnt_exist(void **state);