Skip to content

Commit

Permalink
Updating text that doesn't make sense as Cake uses PHPunit now.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Oct 18, 2010
1 parent e807cc0 commit ae68462
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cake/console/shells/shell.php
Expand Up @@ -606,13 +606,13 @@ protected function _checkUnitTest() {
if (App::import('vendor', 'simpletest' . DS . 'simpletest')) {
return true;
}
$prompt = 'SimpleTest is not installed. Do you want to bake unit test files anyway?';
$prompt = 'PHPUnit is not installed. Do you want to bake unit test files anyway?';
$unitTest = $this->in($prompt, array('y','n'), 'y');
$result = strtolower($unitTest) == 'y' || strtolower($unitTest) == 'yes';

if ($result) {
$this->out();
$this->out('You can download SimpleTest from http://simpletest.org');
$this->out('You can download PHPUnit from http://phpunit.de');
}
return $result;
}
Expand Down

0 comments on commit ae68462

Please sign in to comment.