test for addr

This commit is contained in:
Matias Alejo Garcia 2014-01-10 19:55:35 -03:00
parent 63063f906b
commit b5234cc2d0
1 changed files with 8 additions and 3 deletions

View File

@ -5,6 +5,9 @@ process.env.NODE_ENV = process.env.NODE_ENV || 'development';
var addrs =
[
{ addr: 'mjRmkmYzvZN3cA3aBKJgYJ65epn3WCG84H',
},
/*
{ addr: 'mjRmkmYzvZN3cA3aBKJgYJ65epn3WCG84H',
balance: 46413.0,
totalReceived: 357130.17644359,
@ -63,6 +66,7 @@ var addrs =
'80b460922faf0ad1e8b8a55533654c9a9f3039bfff0fff2bcf8536b8adf95939',
]
},
*/
];
var
@ -92,9 +96,10 @@ describe('Address fromAddrWithInfo', function(){
Address.fromHashWithInfo(t.addr, function(err, a) {
if (err) done(err);
assert.equal(t.balance, a.balance, "balance");
assert.equal(t.totalReceived, a.totalReceived, "totalReceived");
assert.equal(t.totalSent, a.totalSent, "totalSent");
assert.equal(t.addr, a.addr);
if (t.balance) assert.equal(t.balance, a.balance, "balance");
if (t.totalReceived) assert.equal(t.totalReceived, a.totalReceived, "totalReceived");
if (t.totalSent) assert.equal(t.totalSent, a.totalSent, "totalSent");
if (t.transactions) {
t.transactions.forEach( function(tx) {
assert(tx in a.inTransactions);