alterdot-p2p
Version:
Interface to the alterdot P2P network for Alterdot
31 lines (23 loc) • 666 B
JavaScript
;
var should = require('chai').should();
var P2P = require('../../');
var builder = P2P.Messages.builder;
var alterdot = require('alterdot-lib');
describe('Messages Builder', function() {
describe('@constructor', function() {
it('should return commands based on default', function() {
// instantiate
var b = builder();
should.exist(b);
});
it('should return commands with customizations', function() {
// instantiate
var b = builder({
network: alterdot.Networks.testnet,
Block: alterdot.Block,
Transaction: alterdot.Transaction
});
should.exist(b);
});
});
});