polar-bear-stash-contracts
Version:
Smart contracts for the PolarBearStash (COLD) ERC20 token on the Berachain (test)chain.
14 lines (10 loc) • 385 B
JavaScript
const {
shouldBehaveLikeAccessControl,
} = require('./AccessControl.behavior.js');
const AccessControlMock = artifacts.require('AccessControlMock');
contract('AccessControl', function (accounts) {
beforeEach(async function () {
this.accessControl = await AccessControlMock.new({ from: accounts[0] });
});
shouldBehaveLikeAccessControl('AccessControl', ...accounts);
});