mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR: Fixed PermissionTest assertion (from r96642) (from r98142)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@102614 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
1e78fbc34c
commit
29a778fa45
@ -58,8 +58,10 @@ class PermissionTest extends SapphireTest {
|
|||||||
$accessAuthor = $this->objFromFixture('Member', 'author');
|
$accessAuthor = $this->objFromFixture('Member', 'author');
|
||||||
|
|
||||||
$result = Permission::get_members_by_permission(array('CMS_ACCESS_SecurityAdmin'));
|
$result = Permission::get_members_by_permission(array('CMS_ACCESS_SecurityAdmin'));
|
||||||
|
$resultIDs = $result ? $result->column() : array();
|
||||||
|
|
||||||
$this->assertEquals($result->First(),$accessMember, "Member is found via a permission attached to a role");
|
$this->assertContains($accessMember->ID, $resultIDs,
|
||||||
$this->assertNotEquals($result->First(),$accessAuthor, "Member is not found via a permission attached to a role");
|
'Member is found via a permission attached to a role');
|
||||||
|
$this->assertNotContains($accessAuthor->ID, $resultIDs);
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user