Added tests for "/account set server"

This commit is contained in:
James Booth
2013-12-17 22:33:49 +00:00
parent 52f6ad6fe1
commit 9b41c4ee32
4 changed files with 50 additions and 1 deletions

View File

@@ -95,7 +95,11 @@ void accounts_set_jid(const char * const account_name, const char * const value)
check_expected(value);
}
void accounts_set_server(const char * const account_name, const char * const value) {}
void accounts_set_server(const char * const account_name, const char * const value)
{
check_expected(account_name);
check_expected(value);
}
void accounts_set_resource(const char * const account_name, const char * const value)
{