You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
617 B
17 lines
617 B
const {
|
|
DEFAULT_ADMIN_ROLE,
|
|
shouldBehaveLikeAccessControl,
|
|
shouldBehaveLikeAccessControlEnumerable,
|
|
} = require('./AccessControl.behavior.js');
|
|
|
|
const AccessControlEnumerable = artifacts.require('$AccessControlEnumerable');
|
|
|
|
contract('AccessControl', function (accounts) {
|
|
beforeEach(async function () {
|
|
this.accessControl = await AccessControlEnumerable.new({ from: accounts[0] });
|
|
await this.accessControl.$_grantRole(DEFAULT_ADMIN_ROLE, accounts[0]);
|
|
});
|
|
|
|
shouldBehaveLikeAccessControl('AccessControl', ...accounts);
|
|
shouldBehaveLikeAccessControlEnumerable('AccessControl', ...accounts);
|
|
});
|
|
|