21 lines
385 B
ReStructuredText
21 lines
385 B
ReStructuredText
=====================
|
|
Don Confiao Scenario
|
|
=====================
|
|
|
|
|
|
Imports::
|
|
>>> from proteus import Model
|
|
>>> from trytond.tests.tools import activate_modules
|
|
|
|
|
|
Activate module::
|
|
>>> config = activate_modules('sale_don_confiao')
|
|
|
|
Initial data::
|
|
>>> Party = Model.get('party.party')
|
|
|
|
Create party::
|
|
>>> customer = Party()
|
|
>>> customer.name = 'Dunkan'
|
|
>>> customer.save()
|