Skip to Content
मेन्यू
This question has been flagged
1 Reply
3523 Views

I want to write tests on v8 modules, but dont seem to find a way to use new api. In all examples I see that cr, uid is still used etc. Is it possible to write tests with new api. If so how (any references etc)?

Avatar
Discard
Best Answer

Hello Andrius Laukavičius,

             Yes, you can write tests using all new api stuff.

like,

from openerp.tests import common

class testPartnerCreate(common.TransactionCase):
    def setUp(self):
        super(testPartnerCreate, self).setUp()

    def test_create(self):
        res_partner = self.env['res.partner']

        test_partner1 = res_partner.create(
            dict(
                name="Demo bhai",
                city="test city",
                email="demo@test.com",
            ))

           ......

Hope this will help.

Regards....

Avatar
Discard
Related Posts Replies Views Activity
1
दिस॰ 19
3137
2
दिस॰ 24
2316
1
नव॰ 22
3586
2
फ़र॰ 22
5697
1
फ़र॰ 22
4066