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)?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Comptabilité
- Inventaire
- PoS
- Project
- MRP
Cette question a été signalée
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....
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrirePublications associées | Réponses | Vues | Activité | |
---|---|---|---|---|
|
1
déc. 19
|
3135 | ||
|
2
déc. 24
|
2316 | ||
|
1
nov. 22
|
3585 | ||
|
2
févr. 22
|
5696 | ||
|
1
févr. 22
|
4066 |