AcProjectsControllerTest::testIndexActionDenies PHP Method

testIndexActionDenies() public method

    public function testIndexActionDenies()
    {
        $actionName = 'index';
        $this->authority->deny($actionName, $this->modelName);
        $model = $this->buildModel();
        $this->assertCannot($actionName, $this->modelName);
        $this->action('GET', $this->controllerName . "@" . $actionName);
    }