예제 #1
0
 /**
  * @expectedException Mage_Backend_Model_Auth_Exception
  * @magentoDbIsolation enabled
  */
 public function testAuthenticateInactiveUser()
 {
     $this->_model->load(1);
     $this->_model->setIsActive(0)->save();
     $this->_model->authenticate(Magento_Test_Bootstrap::ADMIN_NAME, Magento_Test_Bootstrap::ADMIN_PASSWORD);
 }