]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Minor doc fixes
authorLele Gaifax <lele@metapensiero.it>
Thu, 15 May 2008 00:07:32 +0000 (00:07 +0000)
committerLele Gaifax <lele@metapensiero.it>
Thu, 15 May 2008 00:07:32 +0000 (00:07 +0000)
test/testlib/testing.py

index c816963e4b070b549c04142ec1f9f194fd04e586..28cc0388c99f0d856ffc5120b30be08d053c1bff 100644 (file)
@@ -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.
 
     """