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.
12 lines
466 B
12 lines
466 B
const { DEFAULT_ADMIN_ROLE, shouldBehaveLikeAccessControl } = require('./AccessControl.behavior.js');
|
|
|
|
const AccessControl = artifacts.require('$AccessControl');
|
|
|
|
contract('AccessControl', function (accounts) {
|
|
beforeEach(async function () {
|
|
this.accessControl = await AccessControl.new({ from: accounts[0] });
|
|
await this.accessControl.$_grantRole(DEFAULT_ADMIN_ROLE, accounts[0]);
|
|
});
|
|
|
|
shouldBehaveLikeAccessControl('AccessControl', ...accounts);
|
|
});
|
|
|