From a7a703dbdcf5778e97126db9a6ddba1f855c8230 Mon Sep 17 00:00:00 2001 From: Timo Graham Date: Sun, 5 Feb 2012 15:54:01 +0000 Subject: [PATCH] [1.3.X] Fixed #17571 - Fixed documentation of skipUnlessDBFeature; thanks EnTeQuAk for the report. Backport of r17459 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@17460 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt index 0a86f0d1b9..8262b576fd 100644 --- a/docs/topics/testing.txt +++ b/docs/topics/testing.txt @@ -1586,7 +1586,7 @@ skipUnlessDBFeature Skip the decorated test if the named database feature is *not* supported. -For example, the following test will not be executed if the database +For example, the following test will only be executed if the database supports transactions (e.g., it would run under PostgreSQL, but *not* under MySQL with MyISAM tables)::