Commit 50713039 by Manuel Araoz

new less trivial ownable test

parent fef5c8ed
......@@ -6,6 +6,18 @@ contract('Ownable', function(accounts) {
assert.isTrue(owner != 0);
})
.then(done)
});
it("changes owner after transfer", function(done) {
var ownable = Ownable.deployed();
var other = '0xe682569efa3752a07fdc09885007c47beee803a7';
return ownable.transfer(other)
.then(function() {
return ownable.owner();
})
.then(function(owner) {
assert.isTrue(owner === other);
})
.then(done)
});
});
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment