Added tests for "/account rename"

This commit is contained in:
James Booth
2013-12-16 00:12:07 +00:00
parent 3c0bbed717
commit e14b4ef558
4 changed files with 99 additions and 6 deletions

View File

@@ -78,6 +78,8 @@ gboolean accounts_disable(const char * const name)
gboolean accounts_rename(const char * const account_name,
const char * const new_name)
{
check_expected(account_name);
check_expected(new_name);
return (gboolean)mock();
}