bitcore/test/test.Opcode.js

42 lines
926 B
JavaScript
Raw Normal View History

2014-02-06 10:49:22 -08:00
'use strict';
var chai = chai || require('chai');
var bitcore = bitcore || require('../bitcore');
2014-02-06 10:49:22 -08:00
var should = chai.should();
var OpcodeModule = bitcore.Opcode;
var Opcode;
describe('Opcode', function() {
it('should initialze the main object', function() {
should.exist(OpcodeModule);
});
it('should be able to create class', function() {
Opcode = OpcodeModule;
2014-02-06 10:49:22 -08:00
should.exist(Opcode);
});
it('should be able to create instance', function() {
var oc = new Opcode();
should.exist(oc);
});
2014-03-19 14:10:04 -07:00
it('should be able to create some constants', function() {
2014-02-17 12:18:07 -08:00
// TODO: test works in node but not in browser
2014-02-06 10:49:22 -08:00
for (var i in Opcode.map) {
2014-02-06 11:58:59 -08:00
eval('var '+i + ' = ' + Opcode.map[i] + ';');
2014-02-06 10:49:22 -08:00
}
2014-02-06 11:58:59 -08:00
should.exist(OP_VER);
2014-02-06 10:49:22 -08:00
should.exist(OP_HASH160);
should.exist(OP_RETURN);
should.exist(OP_EQUALVERIFY);
should.exist(OP_CHECKSIG);
should.exist(OP_CHECKMULTISIG);
});
});