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