# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. import odoo.tests @odoo.tests.tagged('post_install', '-at_install') class TestWebsiteCrm(odoo.tests.HttpCase): def test_tour(self): self.start_tour("/", 'website_crm_tour') # check result record = self.env['crm.lead'].search([('description', '=', '### TOUR DATA ###')]) self.assertEqual(len(record), 1) self.assertEqual(record.contact_name, 'John Smith') self.assertEqual(record.email_from, 'john@smith.com') self.assertEqual(record.partner_name, 'Odoo S.A.')