Exemplo n.º 1
0
 public function testHelperMockWasRegistered()
 {
     $this->_subject->setHelper('core/data', new stdClass());
     $this->assertInstanceOf('stdClass', Mage::helper('core/data'));
 }
Exemplo n.º 2
0
 public function testSetHelperWithDataSuffixAndCalledWithout()
 {
     $this->_subject->setHelper('core/data', new stdClass());
     $this->assertInstanceOf('stdClass', Mage::helper('core'));
 }