123456789101112131415161718192021222324252627282930313233343536 |
- const { shouldBehaveLikeERC721PausedToken } = require('./ERC721PausedToken.behavior');
- const { shouldBehaveLikeERC721Basic } = require('./ERC721Basic.behavior');
- const BigNumber = web3.BigNumber;
- const ERC721Pausable = artifacts.require('ERC721PausableMock.sol');
- require('chai')
- .use(require('chai-bignumber')(BigNumber))
- .should();
- contract('ERC721Pausable', function ([_, owner, recipient, operator, ...otherAccounts]) {
- beforeEach(async function () {
- this.token = await ERC721Pausable.new({ from: owner });
- });
- context('when token is paused', function () {
- beforeEach(async function () {
- await this.token.pause({ from: owner });
- });
- shouldBehaveLikeERC721PausedToken(owner, [...otherAccounts]);
- });
- context('when token is not paused yet', function () {
- shouldBehaveLikeERC721Basic([owner, ...otherAccounts]);
- });
- context('when token is paused and then unpaused', function () {
- beforeEach(async function () {
- await this.token.pause({ from: owner });
- await this.token.unpause({ from: owner });
- });
- shouldBehaveLikeERC721Basic([owner, ...otherAccounts]);
- });
- });
|