diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-09-29 17:19:25 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-09-29 17:25:11 -0400 |
| commit | bace4c949e4ed090dbcbfa1eaa4b2435afba794d (patch) | |
| tree | 9ad50829bfa3803661e720c09d57e0fbd98d0855 /test/dialect | |
| parent | bb12d79f7bb3d88a7fe62e6c6b95185d0070247f (diff) | |
| download | sqlalchemy-bace4c949e4ed090dbcbfa1eaa4b2435afba794d.tar.gz | |
add test for upcoming pullreq
Diffstat (limited to 'test/dialect')
| -rw-r--r-- | test/dialect/postgresql/test_dialect.py | 7 |
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) |
