mirror of openzeppelin-contracts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
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);
|
|
|
|
});
|