Merge branch '1.3-misc' into 1.3-test-suite

This commit is contained in:
Mark Story 2010-01-10 12:53:00 -05:00
commit a41678e51f

View file

@ -697,6 +697,7 @@ class ViewTest extends CakeTestCase {
$this->PostsController->helpers = array('Cache', 'Html'); $this->PostsController->helpers = array('Cache', 'Html');
$this->PostsController->constructClasses(); $this->PostsController->constructClasses();
$this->PostsController->cacheAction = array('index' => 3600); $this->PostsController->cacheAction = array('index' => 3600);
$this->PostsController->params['action'] = 'index';
Configure::write('Cache.check', true); Configure::write('Cache.check', true);
$View = new TestView($this->PostsController); $View = new TestView($this->PostsController);