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.
20 lines
763 B
20 lines
763 B
const { shouldBehaveLikeERC20Mintable } = require('./behaviors/ERC20Mintable.behavior');
|
|
const ERC20MintableMock = artifacts.require('ERC20MintableMock');
|
|
const { shouldBehaveLikePublicRole } = require('../../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);
|
|
});
|
|
|