paypro: drop sign() calls in verify tests.

This commit is contained in:
Christopher Jeffrey 2014-08-05 12:51:28 -07:00 committed by Manuel Araoz
parent 21196f8b22
commit a942df63df
1 changed files with 4 additions and 22 deletions

View File

@ -781,16 +781,11 @@ describe('PayPro (in Wallet) model', function() {
should.exist(txp);
should.exist(txp.signedBy[myId]);
should.not.exist(txp.rejectedBy[myId]);
delete txp.signedBy[myId];
w.verifyPaymentRequest(ntxid).should.equal(false);
w.sign(ntxid, function(signed) {
should.exist(signed);
signed.should.equal(false);
console.log('TX not signed.');
return done();
});
console.log('TX not verified.');
return done();
});
});
@ -822,16 +817,11 @@ describe('PayPro (in Wallet) model', function() {
should.exist(txp);
should.exist(txp.signedBy[myId]);
should.not.exist(txp.rejectedBy[myId]);
delete txp.signedBy[myId];
w.verifyPaymentRequest(ntxid).should.equal(false);
w.sign(ntxid, function(signed) {
should.exist(signed);
signed.should.equal(false);
console.log('TX not signed.');
return done();
});
console.log('TX not verified.');
return done();
});
});
@ -852,17 +842,9 @@ describe('PayPro (in Wallet) model', function() {
should.exist(txp);
should.exist(txp.signedBy[myId]);
should.not.exist(txp.rejectedBy[myId]);
delete txp.signedBy[myId];
w.verifyPaymentRequest(ntxid).should.equal(true);
// w.sign(ntxid, function(signed) {
// should.exist(signed);
// // signed.should.equal(true); // false for some reason
// console.log('TX signed successfully.');
// return done();
// });
console.log('PR verfied successfully.');
return done();
});