26 lines
795 B
Python
26 lines
795 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo.tests import tagged
|
||
|
|
||
|
from odoo.addons.product.tests.common import ProductCommon
|
||
|
|
||
|
|
||
|
@tagged('post_install', '-at_install')
|
||
|
class TestProduct(ProductCommon):
|
||
|
|
||
|
def test_common(self):
|
||
|
self.assertEqual(self.product.type, 'consu')
|
||
|
self.assertEqual(self.service_product.type, 'service')
|
||
|
|
||
|
self.assertFalse(self.pricelist.item_ids)
|
||
|
self.assertEqual(
|
||
|
self.env['product.pricelist'].search([]),
|
||
|
self.pricelist,
|
||
|
)
|
||
|
self.assertEqual(
|
||
|
self.env['res.partner'].search([]).property_product_pricelist,
|
||
|
self.pricelist,
|
||
|
)
|
||
|
self.assertEqual(self.pricelist.currency_id.name, self.currency.name)
|