Update docs
This commit is contained in:
11
test/utils/introspection/ERC165.test.js
Normal file
11
test/utils/introspection/ERC165.test.js
Normal file
@ -0,0 +1,11 @@
|
||||
const { shouldSupportInterfaces } = require('./SupportsInterface.behavior');
|
||||
|
||||
const ERC165 = artifacts.require('$ERC165');
|
||||
|
||||
contract('ERC165', function () {
|
||||
beforeEach(async function () {
|
||||
this.mock = await ERC165.new();
|
||||
});
|
||||
|
||||
shouldSupportInterfaces(['ERC165']);
|
||||
});
|
||||
Reference in New Issue
Block a user