You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
451 B
17 lines
451 B
-
|
|
Set valid email
|
|
-
|
|
!record {model: res.partner, id: base.res_partner_12}:
|
|
email: 'info@agilebg.com'
|
|
-
|
|
Try invalid email
|
|
-
|
|
!python {model: res.partner}: |
|
|
try:
|
|
self.write(cr, uid, [ref('base.res_partner_12')], {
|
|
'email': 'john',
|
|
})
|
|
assert False, "An exception should have been raised, 'john' is not a valid email!"
|
|
except openerp.exceptions.Warning:
|
|
# exception was raised as expected
|
|
pass
|