Increasing code coverage for View and ThemeView

This commit is contained in:
phpnut 2009-11-25 23:17:15 -06:00
parent 948f6b21e5
commit f83a024a10
3 changed files with 12 additions and 12 deletions

View file

@ -67,11 +67,8 @@ class ThemeView extends View {
}
$paths = array_merge($themePaths, $paths);
}
if (empty($this->__paths)) {
$this->__paths = $paths;
}
return $paths;
return $this->__paths;
}
}
?>

View file

@ -944,12 +944,8 @@ class View extends Object {
}
$paths[] = App::pluginPath($plugin) . 'views' . DS;
}
$paths = array_merge($paths, $viewPaths);
if (empty($this->__paths)) {
$this->__paths = $paths;
}
return $paths;
$this->__paths = array_merge($paths, $viewPaths);
return $this->__paths;
}
}

View file

@ -477,6 +477,13 @@ class ViewTest extends CakeTestCase {
$result = $this->View->element('test_element');
$this->assertEqual($result, 'this is the test element');
$result = $this->View->element('plugin_element', array('plugin' => 'test_plugin'));
$this->assertEqual($result, 'this is the plugin element using params[plugin]');
$this->View->plugin = 'test_plugin';
$result = $this->View->element('test_plugin_element');
$this->assertEqual($result, 'this is the test set using View::$plugin plugin element');
$result = $this->View->element('non_existant_element');
$this->assertPattern('/Not Found:/', $result);
$this->assertPattern('/non_existant_element/', $result);