mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
[10.0] Add Firebird database support to base_external_dbsource (#623)
This commit is contained in:
committed by
Víctor Martínez
parent
50c3082d84
commit
e4821895f2
@@ -56,3 +56,11 @@ class TestCreateDbsource(common.TransactionCase):
|
||||
except ValueError as e:
|
||||
logging.warning("Log = " + str(e))
|
||||
self.assertTrue(u'Wrong value for' in str(e))
|
||||
|
||||
# Connection to firebird
|
||||
try:
|
||||
dbsource.connector = "fdb"
|
||||
dbsource.connection_test()
|
||||
except Exception as e:
|
||||
logging.warning("Log = " + str(e))
|
||||
self.assertTrue(u'Wrong value for' in str(e))
|
||||
|
||||
Reference in New Issue
Block a user