summaryrefslogtreecommitdiff
path: root/test/testlib/testing.py
diff options
context:
space:
mode:
authorLele Gaifax <lele@metapensiero.it>2008-05-15 00:07:32 +0000
committerLele Gaifax <lele@metapensiero.it>2008-05-15 00:07:32 +0000
commitd415a8edd434190cce9f650256c2489ea2238730 (patch)
treef3c15533fbeec2d33e29d8466fe9bfe536ce340a /test/testlib/testing.py
parentf56065c098a9cdaac236ff7231890b76aaf54f60 (diff)
downloadsqlalchemy-d415a8edd434190cce9f650256c2489ea2238730.tar.gz
Minor doc fixes
Diffstat (limited to 'test/testlib/testing.py')
-rw-r--r--test/testlib/testing.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testlib/testing.py b/test/testlib/testing.py
index c816963e4..28cc0388c 100644
--- a/test/testlib/testing.py
+++ b/test/testlib/testing.py
@@ -94,7 +94,7 @@ def future(fn):
def fails_on(*dbs):
"""Mark a test as expected to fail on one or more database implementations.
- Unlike ``unsupported``, tests marked as ``fails_on`` will be run
+ Unlike ``crashes``, tests marked as ``fails_on`` will be run
for the named databases. The test is expected to fail and the unit test
logic is inverted: if the test fails, a success is reported. If the test
succeeds, a failure is reported.
@@ -150,7 +150,7 @@ def fails_on_everything_except(*dbs):
def crashes(db, reason):
"""Mark a test as unsupported by a database implementation.
- 'crashes' tests will be skipped unconditionally. Use for feature tests
+ ``crashes`` tests will be skipped unconditionally. Use for feature tests
that cause deadlocks or other fatal problems.
"""