forked from FlappyDEV/flappycore
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtest.Opcode.js
36 lines (32 loc) · 1007 Bytes
/
test.Opcode.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
'use strict';
var chai = chai || require('chai');
var bitcore = bitcore || require('../bitcore');
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;
should.exist(Opcode);
});
it('should be able to create instance', function() {
var oc = new Opcode(81);
should.exist(oc);
});
it('should be able to create some constants', function() {
should.exist(Opcode.map.OP_VER);
should.exist(Opcode.map.OP_HASH160);
should.exist(Opcode.map.OP_RETURN);
should.exist(Opcode.map.OP_EQUALVERIFY);
should.exist(Opcode.map.OP_CHECKSIG);
should.exist(Opcode.map.OP_CHECKMULTISIG);
});
it('#asList should work', function() {
var list = Opcode.asList();
(typeof(list[0])).should.equal('string');
list.length.should.equal(116);
});
});