summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Trier <mtrier@gmail.com>2008-12-11 19:24:24 +0000
committerMichael Trier <mtrier@gmail.com>2008-12-11 19:24:24 +0000
commit8ffbc9a84644713a28ffde2c5a72ecb981eb7551 (patch)
tree28720fb5dcb0ff6f3275a4f9bc5f7d78ab9fa848
parent052d7f36433a0c29ab20d0ea37933c03a488e12d (diff)
downloadsqlalchemy-8ffbc9a84644713a28ffde2c5a72ecb981eb7551.tar.gz
Access doesn't support savepoints or two-phase commit.
-rw-r--r--test/testlib/requires.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testlib/requires.py b/test/testlib/requires.py
index 13d4cdf11..200fb01b1 100644
--- a/test/testlib/requires.py
+++ b/test/testlib/requires.py
@@ -68,7 +68,7 @@ def savepoints(fn):
return _chain_decorators_on(
fn,
emits_warning_on('mssql', 'Savepoint support in mssql is experimental and may lead to data loss.'),
- no_support('access', 'FIXME: guessing, needs confirmation'),
+ no_support('access', 'not supported by database'),
no_support('sqlite', 'not supported by database'),
no_support('sybase', 'FIXME: guessing, needs confirmation'),
exclude('mysql', '<', (5, 0, 3), 'not supported by database'),
@@ -96,7 +96,7 @@ def two_phase_transactions(fn):
"""Target database must support two-phase transactions."""
return _chain_decorators_on(
fn,
- no_support('access', 'FIXME: guessing, needs confirmation'),
+ no_support('access', 'not supported by database'),
no_support('firebird', 'no SA implementation'),
no_support('maxdb', 'not supported by database'),
no_support('mssql', 'FIXME: guessing, needs confirmation'),