parent
441e85d823
commit
b5469310a1
@ -0,0 +1,14 @@ |
|||||||
|
contract('Bounty', function(accounts) { |
||||||
|
it.only("create target", function(done){ |
||||||
|
var bounty = Bounty.deployed(); |
||||||
|
|
||||||
|
bounty.createTarget(). |
||||||
|
then(function() { |
||||||
|
return bounty.checkInvarient.call() |
||||||
|
}). |
||||||
|
then(function(result) { |
||||||
|
assert.isTrue(result); |
||||||
|
}). |
||||||
|
then(done); |
||||||
|
}) |
||||||
|
}); |
Loading…
Reference in new issue