* signing prefix added
* Minor improvement
* Tests changed
* Successfully tested
* Minor improvements
* Minor improvements
* Revert "Dangling commas are now required. (#1359)"
This reverts commit a6889776f4.
* updates
* fixes #1404
* approve failing test
* suggested changes done
* ISafeERC20 removed
* conflict fixes
* fixes #1205
* minor change
* suggested changes
* reviewed changes
* final update
20 lines
587 B
JavaScript
20 lines
587 B
JavaScript
const { shouldBehaveLikeERC721 } = require('./ERC721.behavior');
|
|
const {
|
|
shouldBehaveLikeMintAndBurnERC721,
|
|
} = require('./ERC721MintBurn.behavior');
|
|
|
|
const ERC721BurnableImpl = artifacts.require('ERC721MintableBurnableImpl.sol');
|
|
|
|
require('../../helpers/setup');
|
|
|
|
contract('ERC721Burnable', function ([_, creator, ...accounts]) {
|
|
const minter = creator;
|
|
|
|
beforeEach(async function () {
|
|
this.token = await ERC721BurnableImpl.new({ from: creator });
|
|
});
|
|
|
|
shouldBehaveLikeERC721(creator, minter, accounts);
|
|
shouldBehaveLikeMintAndBurnERC721(creator, minter, accounts);
|
|
});
|