예제 #1
0
 public function testShouldAllowUnregisteringPluginResourcesByName()
 {
     $bootstrap = new TestAsset\ZfAppBootstrap($this->application);
     $bootstrap->registerPluginResource('view');
     $bootstrap->unregisterPluginResource('view');
     $this->assertFalse($bootstrap->hasPluginResource('view'));
 }