From: Lele Gaifax Date: Thu, 15 May 2008 00:07:32 +0000 (+0000) Subject: Minor doc fixes X-Git-Tag: rel_0_5beta1~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d415a8edd434190cce9f650256c2489ea2238730;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Minor doc fixes --- diff --git a/test/testlib/testing.py b/test/testlib/testing.py index c816963e4b..28cc0388c9 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. """