* next step in attachment handling infra; still WIP

This commit is contained in:
djcb
2010-08-22 19:31:21 +03:00
parent 37b0ea3bc3
commit 3cdb1f15ed
6 changed files with 136 additions and 77 deletions

View File

@ -91,7 +91,7 @@ test_mu_msg_gmime_01 (void)
==, 1217530645);
{
GSList *lst, *cur;
lst = mu_msg_gmime_contacts_list (msg);
lst = mu_msg_gmime_get_contacts (msg);
g_assert_cmpuint (g_slist_length(lst),==, 2);
cur = lst;
@ -108,7 +108,7 @@ test_mu_msg_gmime_01 (void)
==, "gcc-help@gcc.gnu.org");
mu_msg_contact_list_free (lst);
mu_msg_contacts_free (lst);
}
mu_msg_gmime_destroy (msg);
@ -148,7 +148,7 @@ test_mu_msg_gmime_02 (void)
{
GSList *lst, *cur;
lst = mu_msg_gmime_contacts_list (msg);
lst = mu_msg_gmime_get_contacts (msg);
g_assert_cmpuint (g_slist_length(lst),==, 2);
cur = lst;
@ -165,7 +165,7 @@ test_mu_msg_gmime_02 (void)
==, "help-gnu-emacs@gnu.org");
mu_msg_contact_list_free (lst);
mu_msg_contacts_free (lst);
}