Updating text that doesn't make sense as Cake uses PHPunit now.

This commit is contained in:
mark_story 2010-10-17 21:29:30 -04:00
parent e807cc0eca
commit ae6846277e

View file

@ -606,13 +606,13 @@ class Shell extends Object {
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;
}