flocore/test/test.Address.js
2014-02-05 18:15:10 -03:00

25 lines
431 B
JavaScript

'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() {
});
});