From 2f7200c04bd59c1da6a5957f4dbddfad662cd3ca Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 5 Sep 2012 18:54:15 +0200 Subject: [PATCH] adding @group Database to more tests Change-Id: If1b63f8be80fdc18ccc3dc526f82f7684c5cf50b --- tests/phpunit/includes/CssContentTest.php | 3 +++ tests/phpunit/includes/JavascriptContentTest.php | 3 +++ tests/phpunit/includes/TitleTest.php | 5 +++++ tests/phpunit/includes/WikitextContentTest.php | 3 +++ 4 files changed, 14 insertions(+) diff --git a/tests/phpunit/includes/CssContentTest.php b/tests/phpunit/includes/CssContentTest.php index 64945f8a4c..163ce48eab 100644 --- a/tests/phpunit/includes/CssContentTest.php +++ b/tests/phpunit/includes/CssContentTest.php @@ -2,6 +2,9 @@ /** * @group ContentHandler + * + * @group Database + * ^--- needed, because we do need the database to test link updates */ class CssContentTest extends JavascriptContentTest { diff --git a/tests/phpunit/includes/JavascriptContentTest.php b/tests/phpunit/includes/JavascriptContentTest.php index da03d62cf8..f8a9bdfbd8 100644 --- a/tests/phpunit/includes/JavascriptContentTest.php +++ b/tests/phpunit/includes/JavascriptContentTest.php @@ -2,6 +2,9 @@ /** * @group ContentHandler + * + * @group Database + * ^--- needed, because we do need the database to test link updates */ class JavascriptContentTest extends WikitextContentTest { diff --git a/tests/phpunit/includes/TitleTest.php b/tests/phpunit/includes/TitleTest.php index f61652df19..2a8ec44fc8 100644 --- a/tests/phpunit/includes/TitleTest.php +++ b/tests/phpunit/includes/TitleTest.php @@ -1,5 +1,10 @@