Skip to content

Commit

Permalink
Making file argument optional in console testsuite in order to show c…
Browse files Browse the repository at this point in the history
…omplete list of test cases for a category
  • Loading branch information
lorenzo committed Nov 3, 2010
1 parent 9afd4d7 commit 557c527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/console/shells/testsuite.php
Expand Up @@ -43,7 +43,7 @@ public function getOptionParser() {
'required' => true
))->addArgument('file', array(
'help' => __('file name with folder prefix and without the test.php suffix.'),
'required' => true,
'required' => false,
))->addOption('log-junit', array(
'help' => __('<file> Log test execution in JUnit XML format to file.'),
'default' => false
Expand Down

0 comments on commit 557c527

Please sign in to comment.