AuthRulesTest::testCanDeleteEvent_NotTimeLocked PHP Method

testCanDeleteEvent_NotTimeLocked() public method

    public function testCanDeleteEvent_NotTimeLocked()
    {
        $event = $this->getEvent(array('created_date' => date('Y-m-d H:i:s', strtotime('yesterday'))));
        $this->assertTrue($this->rules->canDeleteEvent($this->getUser(), $this->getNormalFirm(), $event));
    }
AuthRulesTest