You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
466 B
JavaScript
13 lines
466 B
JavaScript
2 years ago
|
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);
|
||
|
});
|