ownable.js 247 B

1234567891011
  1. contract('Ownable', function(accounts) {
  2. it("should have an owner", function(done) {
  3. var ownable = Ownable.deployed();
  4. return ownable.owner()
  5. .then(function(owner) {
  6. assert.isTrue(owner != 0);
  7. })
  8. .then(done)
  9. });
  10. });