Browse Source

add pending tests

Francisco Giordano 8 years ago
parent
commit
6344a76f83
1 changed files with 6 additions and 0 deletions
  1. 6 0
      test/TokenVesting.js

+ 6 - 0
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');
+
 });