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.
14 lines
304 B
14 lines
304 B
7 years ago
|
const { shouldSupportInterfaces } = require('./SupportsInterface.behavior');
|
||
7 years ago
|
|
||
4 years ago
|
const ERC165Mock = artifacts.require('ERC165Mock');
|
||
7 years ago
|
|
||
4 years ago
|
contract('ERC165', function (accounts) {
|
||
7 years ago
|
beforeEach(async function () {
|
||
6 years ago
|
this.mock = await ERC165Mock.new();
|
||
7 years ago
|
});
|
||
|
|
||
|
shouldSupportInterfaces([
|
||
|
'ERC165',
|
||
|
]);
|
||
|
});
|