Example #1
0
 /**
  * @covers Mage_Backend_Controller_Router_Default::fetchDefault
  */
 public function testFetchDefault()
 {
     $default = array('area' => '', 'module' => 'admin', 'controller' => 'index', 'action' => 'index');
     $this->_frontMock->expects($this->once())->method('setDefault')->with($this->equalTo($default));
     $this->_model->fetchDefault();
 }