Fix .gitignore: stop tracking ignored files

This commit is contained in:
5t4l1n
2025-07-27 10:39:02 +05:30
parent b42747e9a3
commit 3a87ef0576
625 changed files with 88566 additions and 63 deletions
@@ -0,0 +1,20 @@
const { BN } = require('@openzeppelin/test-helpers');
const { shouldBehaveLikeERC20Burnable } = require('./ERC20Burnable.behavior');
const ERC20Burnable = artifacts.require('$ERC20Burnable');
contract('ERC20Burnable', function (accounts) {
const [owner, ...otherAccounts] = accounts;
const initialBalance = new BN(1000);
const name = 'My Token';
const symbol = 'MTKN';
beforeEach(async function () {
this.token = await ERC20Burnable.new(name, symbol, { from: owner });
await this.token.$_mint(owner, initialBalance);
});
shouldBehaveLikeERC20Burnable(owner, initialBalance, otherAccounts);
});