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
Sergio Teruel
parent
5d23e34926
commit
b5d29f3c9b
@@ -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