bitcore/test/test.Address.js

25 lines
431 B
JavaScript
Raw Normal View History

2014-02-04 11:02:09 -08:00
'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() {
});
});