Fixing missing fixture causing test failure.

This commit is contained in:
mark_story 2011-07-22 20:45:33 -04:00
parent 420a2f56df
commit 63ea4ef99a

View file

@ -5529,6 +5529,7 @@ class FormHelperTest extends CakeTestCase {
* @return void
*/
public function testTextAreaWithStupidCharacters() {
$this->loadFixtures('Post');
$result = $this->Form->input('Post.content', array(
'label' => 'Current Text', 'value' => "GREAT®", 'rows' => '15', 'cols' => '75'
));