ERC165.test.js 296 B

12345678910111213
  1. const { shouldSupportInterfaces } = require('./SupportsInterface.behavior');
  2. const ERC165Mock = artifacts.require('ERC165Mock');
  3. contract('ERC165', function () {
  4. beforeEach(async function () {
  5. this.mock = await ERC165Mock.new();
  6. });
  7. shouldSupportInterfaces([
  8. 'ERC165',
  9. ]);
  10. });