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