Add test for patch.

This commit is contained in:
Eric Martindale 2015-03-24 16:38:02 -04:00
parent 9ece2f78ed
commit a7d75cb25b
1 changed files with 19 additions and 0 deletions

View File

@ -40,6 +40,25 @@ describe('Networks', function() {
}
}
});
it('should not set a network map for an undefined value', function() {
var custom = {
name: 'somenet',
pubkeyhash: 0x13,
privatekey: 0x93,
scripthash: 0x11,
xpubkey: 0x0278b20f,
xprivkey: 0x0278ade5,
networkMagic: 0xe7beb4d5,
port: 20008,
dnsSeeds: [
'somenet.localhost'
]
};
networks.add(custom);
var network = networks.get(undefined);
should.not.exist( network );
});
var constants = ['name', 'alias', 'pubkeyhash', 'scripthash', 'xpubkey', 'xprivkey'];