Files
openzeppelin-contracts/test/ownable.js
2016-09-12 19:16:37 -07:00

12 lines
247 B
JavaScript

contract('Ownable', function(accounts) {
it("should have an owner", function(done) {
var ownable = Ownable.deployed();
return ownable.owner()
.then(function(owner) {
assert.isTrue(owner != 0);
})
.then(done)
});
});