* 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
14 lines
370 B
JavaScript
14 lines
370 B
JavaScript
const { shouldBehaveLikeERC721 } = require('./ERC721.behavior');
|
|
|
|
const ERC721Mock = artifacts.require('ERC721Mock.sol');
|
|
|
|
require('../../helpers/setup');
|
|
|
|
contract('ERC721', function ([_, creator, ...accounts]) {
|
|
beforeEach(async function () {
|
|
this.token = await ERC721Mock.new({ from: creator });
|
|
});
|
|
|
|
shouldBehaveLikeERC721(creator, creator, accounts);
|
|
});
|