3 changed files with 26 additions and 1 deletions
@ -0,0 +1,24 @@ |
|||
'use strict'; |
|||
|
|||
var chai = require('chai'); |
|||
var bitcore = require('../bitcore'); |
|||
|
|||
var expect = chai.expect; |
|||
var should = chai.should(); |
|||
|
|||
var Address = bitcore.Address.class(); |
|||
|
|||
describe('Address', function() { |
|||
it('should initialze the main object', function() { |
|||
should.exist(Address); |
|||
}); |
|||
it('should create a bignum from string', function() { |
|||
}); |
|||
it('should perform basic math operations', function() { |
|||
}); |
|||
}); |
|||
|
|||
|
|||
|
|||
|
|||
|
Loading…
Reference in new issue