summaryrefslogtreecommitdiff
path: root/test/dialect/postgresql
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-09-29 17:19:25 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-09-29 17:19:25 -0400
commit62463b95e098138b181063ea1505f80719413ba2 (patch)
tree4a671fed23c0d5d803f35192474343e577b84ec8 /test/dialect/postgresql
parent4cace9d3d52ea602fdae8254fa32a2e302332636 (diff)
downloadsqlalchemy-62463b95e098138b181063ea1505f80719413ba2.tar.gz
add test for upcoming pullreq
Diffstat (limited to 'test/dialect/postgresql')
-rw-r--r--test/dialect/postgresql/test_dialect.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/dialect/postgresql/test_dialect.py b/test/dialect/postgresql/test_dialect.py
index 1fc239cb7..7acc1e9ff 100644
--- a/test/dialect/postgresql/test_dialect.py
+++ b/test/dialect/postgresql/test_dialect.py
@@ -53,7 +53,12 @@ class MiscTest(fixtures.TestBase, AssertsExecutionResults, AssertsCompiledSQL):
'compiled by GCC gcc (GCC) 4.4.2, 64-bit', (8, 5)),
('EnterpriseDB 9.1.2.2 on x86_64-unknown-linux-gnu, '
'compiled by gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-50), '
- '64-bit', (9, 1, 2))]:
+ '64-bit', (9, 1, 2)),
+ ('VMWare EnterpriseDB 9.1.2.2 on x86_64-unknown-linux-gnu, '
+ 'compiled by gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-50), '
+ '64-bit', (9, 1, 2))
+
+ ]:
eq_(testing.db.dialect._get_server_version_info(mock_conn(string)),
version)