You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
283 B
9 lines
283 B
-
|
|
Connect to local Postgres.
|
|
-
|
|
!python {model: base.external.dbsource}: |
|
|
from openerp.osv.orm import except_orm
|
|
try:
|
|
self.connection_test(cr, uid, [ref("demo_postgre")])
|
|
except except_orm as e:
|
|
assert e.value == u'Everything seems properly set up!'
|