paypro: clean up test again.

This commit is contained in:
Christopher Jeffrey 2014-07-28 18:48:59 -07:00 committed by Manuel Araoz
parent 5e885da184
commit 283dec1f2e
1 changed files with 2 additions and 23 deletions

View File

@ -187,7 +187,7 @@ describe('PayPro (in Wallet) model', function() {
return w;
};
it('should start the example server', function(done) {
it('#start the example server', function(done) {
startServer(function(err, s) {
if (err) return done(err);
server = s;
@ -196,28 +196,7 @@ describe('PayPro (in Wallet) model', function() {
});
});
it('#create a payment transaction', function() {
var w = cachedCreateW2();
var comment = 'This is a comment';
unspentTest[0].address = w.publicKeyRing.getAddress(1, true, w.publicKey).toString();
unspentTest[0].scriptPubKey = w.publicKeyRing.getScriptPubKeyHex(1, true, w.publicKey);
var ntxid = w.createTxSync(
'mgGJEugdPnvhmRuFdbdQcFfoFLc1XXeB79',
'123456789',
comment,
unspentTest
);
var t = w.txProposals;
var txp = t.txps[ntxid];
var tx = txp.builder.build();
should.exist(tx);
txp.comment.should.equal(comment);
});
it('should send a payment request', function(done) {
it('#send a payment request', function(done) {
var w = cachedCreateW2();
should.exist(w);
unspentTest[0].address = w.publicKeyRing.getAddress(1, true, w.publicKey).toString();