- const { shouldBehaveLikeOwnable } = require('./Ownable.behaviour');
- const Ownable = artifacts.require('Ownable');
- contract('Ownable', function (accounts) {
- beforeEach(async function () {
- this.ownable = await Ownable.new();
- });
- shouldBehaveLikeOwnable(accounts);
- });
|