From b65dff0fbe328ba4a10a0c35cede34cf93f0fb95 Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Fri, 18 May 2012 16:05:05 +1200 Subject: [PATCH] BUGFIX Allowing actions related to coverage tests --- dev/TestRunner.php | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/dev/TestRunner.php b/dev/TestRunner.php index 407c0a3fc..53ac653bb 100644 --- a/dev/TestRunner.php +++ b/dev/TestRunner.php @@ -37,25 +37,25 @@ class TestRunner extends Controller { 'module/$ModuleName' => 'module', 'all' => 'all', 'build' => 'build', - '$TestCase' => 'only', + '$TestCase' => 'only' ); static $allowed_actions = array( - 'index', - 'browse', - 'coverage', - 'coverageOnly', - 'startsession', - 'endsession', - 'cleanupdb', - 'module', - 'all', - 'build', - 'only' + 'index', + 'browse', + 'coverage', + 'coverageAll', + 'coverageModule', + 'coverageOnly', + 'startsession', + 'endsession', + 'cleanupdb', + 'module', + 'all', + 'build', + 'only' ); - - /** * @var Array Blacklist certain directories for the coverage report. * Filepaths are relative to the webroot, without leading slash.