mirror of openzeppelin-contracts
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.
|
|
|
const { ethers } = require('hardhat');
|
|
|
|
const { loadFixture } = require('@nomicfoundation/hardhat-network-helpers');
|
|
|
|
|
|
|
|
const { shouldSupportInterfaces } = require('./SupportsInterface.behavior');
|
|
|
|
|
|
|
|
async function fixture() {
|
|
|
|
return {
|
|
|
|
mock: await ethers.deployContract('$ERC165'),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('ERC165', function () {
|
|
|
|
beforeEach(async function () {
|
|
|
|
Object.assign(this, await loadFixture(fixture));
|
|
|
|
});
|
|
|
|
|
|
|
|
shouldSupportInterfaces(['ERC165']);
|
|
|
|
});
|