Added alphabetic sorting to the plugin list in the test suite.

Signed-off-by: Mark Story <mark@mark-story.com>
This commit is contained in:
Phally 2010-03-20 12:31:20 +01:00 committed by Mark Story
parent 76af3b9e81
commit 7f7315e6d2

1
cake/tests/lib/reporter/cake_html_reporter.php Normal file → Executable file
View file

@ -65,6 +65,7 @@ class CakeHtmlReporter extends CakeBaseReporter {
$groups = $this->baseUrl() . '?show=groups';
$cases = $this->baseUrl() . '?show=cases';
$plugins = App::objects('plugin');
sort($plugins);
include CAKE_TESTS_LIB . 'templates' . DS . 'menu.php';
}