1234567891011121314151617181920212223 |
- const { shouldSupportInterfaces } = require('./SupportsInterface.behavior');
- const { assertRevert } = require('../helpers/assertRevert');
- const SupportsInterfaceWithLookup = artifacts.require('SupportsInterfaceWithLookupMock');
- require('chai')
- .should();
- contract('SupportsInterfaceWithLookup', function (accounts) {
- beforeEach(async function () {
- this.mock = await SupportsInterfaceWithLookup.new();
- });
- it('does not allow 0xffffffff', async function () {
- await assertRevert(
- this.mock.registerInterface(0xffffffff)
- );
- });
- shouldSupportInterfaces([
- 'ERC165',
- ]);
- });
|