Files
openzeppelin-contracts/test/Bounty.js
Makoto Inoue 48badda96f Fix typo
2016-10-26 07:24:11 +01:00

28 lines
780 B
JavaScript

contract('Bounty', function(accounts) {
it("can call checkInvariant for InsecureTargetMock", function(done){
var bounty = Bounty.deployed();
var target = SecureTargetMock.deployed();
bounty.createTarget(target.address).
then(function() {
return bounty.checkInvariant.call()
}).
then(function(result) {
assert.isTrue(result);
}).
then(done);
})
it("can call checkInvariant for InsecureTargetMock", function(done){
var bounty = Bounty.deployed();
var target = InsecureTargetMock.deployed();
bounty.createTarget(target.address).
then(function() {
return bounty.checkInvariant.call()
}).
then(function(result) {
assert.isFalse(result);
}).
then(done);
})
});