12345678910111213141516171819 |
- const { ether } = require('../../helpers/ether');
- const { shouldBehaveLikeRBACMintableToken } = require('./RBACMintableToken.behavior');
- const { shouldBehaveLikeERC20Mintable } = require('./ERC20Mintable.behavior');
- const { shouldBehaveLikeERC20Capped } = require('./ERC20Capped.behavior');
- const RBACCappedTokenMock = artifacts.require('RBACCappedTokenMock');
- contract('RBACCappedToken', function ([_, owner, minter, ...otherAccounts]) {
- const cap = ether(1000);
- beforeEach(async function () {
- this.token = await RBACCappedTokenMock.new(cap, { from: owner });
- await this.token.addMinter(minter, { from: owner });
- });
- shouldBehaveLikeERC20Mintable(owner, minter, otherAccounts);
- shouldBehaveLikeRBACMintableToken(owner, otherAccounts);
- shouldBehaveLikeERC20Capped(minter, otherAccounts, cap);
- });
|