Updating links to SimpleTest in Shell. Fixes #6162

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@8073 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
mark_story 2009-03-04 01:17:44 +00:00
parent 591b9f0582
commit 1654c3f339

View file

@ -471,11 +471,11 @@ class Shell extends Object {
if (App::import('vendor', 'simpletest' . DS . 'simpletest')) {
return true;
}
$unitTest = $this->in('Cake test suite not installed. Do you want to bake unit test files anyway?', array('y','n'), 'y');
$unitTest = $this->in('SimpleTest is not installed. Do you want to bake unit test files anyway?', array('y','n'), 'y');
$result = low($unitTest) == 'y' || low($unitTest) == 'yes';
if ($result) {
$this->out("\nYou can download the Cake test suite from http://cakeforge.org/projects/testsuite/", true);
$this->out("\nYou can download SimpleTest from http://simpletest.org", true);
}
return $result;
}