Files
openzeppelin-contracts/test/token/ERC20/ERC20Mintable.test.js
2019-01-18 15:44:59 -03:00

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);
});