Ownable.test.js 270 B

1234567891011
  1. import shouldBehaveLikeOwnable from './Ownable.behaviour';
  2. const Ownable = artifacts.require('Ownable');
  3. contract('Ownable', function (accounts) {
  4. beforeEach(async function () {
  5. this.ownable = await Ownable.new();
  6. });
  7. shouldBehaveLikeOwnable(accounts);
  8. });