From 6344a76f834997150d06cb3eb86bacd01aa6d776 Mon Sep 17 00:00:00 2001 From: Francisco Giordano Date: Tue, 29 Aug 2017 12:40:47 -0300 Subject: [PATCH] add pending tests --- test/TokenVesting.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/TokenVesting.js b/test/TokenVesting.js index d4c233bce..974f19b71 100644 --- a/test/TokenVesting.js +++ b/test/TokenVesting.js @@ -48,6 +48,8 @@ contract('TokenVesting', function ([_, owner, beneficiary]) { balance.should.bignumber.equal(amount.mul(releaseTime - this.start).div(this.end - this.start).floor()); }); + it('should linearly release tokens during vesting period'); + it('should have released all after end', async function () { await increaseTimeTo(this.end); await this.vesting.release(this.token.address); @@ -55,4 +57,8 @@ contract('TokenVesting', function ([_, owner, beneficiary]) { balance.should.bignumber.equal(amount); }); + it('should fail to be revoked by owner if revocable not set'); + + it('should be emptied when revoked by owner'); + });