blob: f4c7b003f8e386d2a48167b7c32a359384d80894 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import odoo.tests
from odoo import tools
@odoo.tests.tagged('post_install', '-at_install')
class TestUi(odoo.tests.HttpCase):
def test_admin(self):
self.env['blog.blog'].create({'name': 'Travel'})
self.env['ir.attachment'].create({
'public': True,
'type': 'url',
'url': '/web/image/123/transparent.png',
'name': 'transparent.png',
'mimetype': 'image/png',
})
self.start_tour("/", 'blog', login='admin')
|