21 lines
773 B
JavaScript
21 lines
773 B
JavaScript
const { shouldBehaveLikeERC20Mintable } = require('./behaviors/ERC20Mintable.behavior');
|
|
const ERC20MintableMock = artifacts.require('ERC20MintableMock');
|
|
const { shouldBehaveLikePublicRole } = require('../../behaviors/access/roles/PublicRole.behavior');
|
|
|
|
contract('ERC20Mintable', function ([_, minter, otherMinter, ...otherAccounts]) {
|
|
beforeEach(async function () {
|
|
this.token = await ERC20MintableMock.new({ from: minter });
|
|
});
|
|
|
|
describe('minter role', function () {
|
|
beforeEach(async function () {
|
|
this.contract = this.token;
|
|
await this.contract.addMinter(otherMinter, { from: minter });
|
|
});
|
|
|
|
shouldBehaveLikePublicRole(minter, otherMinter, otherAccounts, 'minter');
|
|
});
|
|
|
|
shouldBehaveLikeERC20Mintable(minter, otherAccounts);
|
|
});
|