Browse Source

PEP8 fixes

pull/29/head
Jos De Graeve 10 years ago
parent
commit
3aebaa6f43
  1. 2
      pos_require_customer/tests/__init__.py
  2. 18
      pos_require_customer/tests/test_pos.py

2
pos_require_customer/tests/__init__.py

@ -1 +1 @@
from . import test_pos
from . import test_pos

18
pos_require_customer/tests/test_pos.py

@ -5,18 +5,17 @@ from openerp import exceptions
class TestPosRequireCustomer(common.TransactionCase):
def setUp(self):
super(TestPosRequireCustomer, self).setUp()
def test_customer_not_required(self):
posconfig = self.env.ref('point_of_sale.pos_config_main')
posconfig.require_customer = False
pos_session = self.env['pos.session'].create({'config_id':
posconfig.id})
# Now Create new session and create a
# pos order in this session
pos_session = self.env['pos.session'].create(
{'config_id': posconfig.id})
# should not raise any exception
self.env['pos.order'].create({
'session_id': pos_session.id,
@ -24,13 +23,13 @@ class TestPosRequireCustomer(common.TransactionCase):
})
def test_customer_is_required(self):
posconfig = self.env.ref('point_of_sale.pos_config_main')
posconfig.require_customer = True
pos_session = self.env['pos.session'].create({'config_id':
posconfig.id})
# Now Create new session and create a
# pos order in this session
pos_session = self.env['pos.session'].create(
{'config_id': posconfig.id})
# should raise exceptions.ValidationError
self.assertRaises(
exceptions.ValidationError,
@ -39,4 +38,3 @@ class TestPosRequireCustomer(common.TransactionCase):
'partner_id': False,
})
)
Loading…
Cancel
Save