[IMP] mail: commented test for res_model on attachment because one2many became many2many

bzr revid: chm@openerp.com-20121116130834-hsu7wunja092ayt9
This commit is contained in:
Christophe Matthieu 2012-11-16 14:08:34 +01:00
parent 0cec2d9d06
commit 81db3f3997
1 changed files with 4 additions and 3 deletions

View File

@ -506,10 +506,11 @@ class test_mail(test_mail_mockup.TestMailMockups):
self.assertEqual(compose.parent_id and compose.parent_id.id, message.id, 'mail.message parent_id incorrect')
# Test: mail.message: attachments
for attach in compose.attachment_ids:
self.assertEqual(attach.res_model, 'mail.group', 'mail.message attachment res_model incorrect')
self.assertEqual(attach.res_id, self.group_pigs_id, 'mail.message attachment res_id incorrect')
# this test is commented: the field one2many became many2many
# self.assertEqual(attach.res_model, 'mail.group', 'mail.message attachment res_model incorrect')
# self.assertEqual(attach.res_id, self.group_pigs_id, 'mail.message attachment res_id incorrect')
self.assertIn((attach.datas_fname, attach.datas.decode('base64')), _attachments_test, 'mail.message attachment name / data incorrect')
# ----------------------------------------
# CASE3: mass_mail on Pigs and Bird
# ----------------------------------------