ZF-8118: Zend_Application_Bootstrap_BootstrapTest::testRunShouldDispatchFrontController() fails
Description
testRunShouldDispatchFrontController() fails because the resource is loaded as
$this->bootstrap->setOptions(array(
'resources' => array(
'frontcontroller' => array(......
For the test to pass, you must camelCase the resource name :
$this->bootstrap->setOptions(array(
'resources' => array(
'FrontController' => array(......
The bug might be related with #ZF-7365, there seems to be strtolower() problems somewhere. Zend_Application_Bootstrap_Bootstrap registers the resource as 'FrontController' (camelCase styled)
Comments
Posted by Dolf Schimmel (Freeaqingme) (freak) on 2009-10-22T07:21:05.000+0000
This should be solved in trunk. Marking as duplicate of ZF-8080.