Expanded rights to also manage actions instead of just a cruds

This commit is contained in:
Kevin Frantz
2019-02-21 18:46:57 +01:00
parent 465d6d6d01
commit 3e91aed050
27 changed files with 91 additions and 98 deletions

View File

@@ -52,7 +52,7 @@ class RequestedActionTest extends TestCase
$list = ActionType::EXECUTE;
$this->action->setActionType($list);
$this->assertEquals($list, $this->action->getActionType());
$this->assertEquals(CRUDType::READ, $this->requestedRight->getCrud());
$this->assertEquals(CRUDType::READ, $this->requestedRight->getActionType());
}
public function testCrud(): void
@@ -60,7 +60,7 @@ class RequestedActionTest extends TestCase
foreach (CRUDType::getChoices() as $crud) {
$this->action->setActionType($crud);
$this->assertEquals($crud, $this->action->getActionType());
$this->assertEquals($crud, $this->requestedRight->getCrud());
$this->assertEquals($crud, $this->requestedRight->getActionType());
}
}