Example #1
0
 /**
  * @group ZF-6087
  */
 public function testConstructorShouldAllowPassingArrayOfHelperPaths()
 {
     $view = new View(array('helperPath' => array('My\\View' => 'My/')));
     $paths = $view->getHelperPaths();
     $this->assertTrue(array_key_exists('My\\View\\', $paths), var_export($paths, 1));
 }