fix tests for opcode
This commit is contained in:
parent
40d308748f
commit
685e0c5a95
@ -1,10 +1,14 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
var should = require('chai').should();
|
var should = require('chai').should();
|
||||||
var Opcode = require('../lib/opcode');
|
var bitcore = require('..');
|
||||||
|
var Opcode = bitcore.Opcode;
|
||||||
|
|
||||||
describe('Opcode', function() {
|
describe('Opcode', function() {
|
||||||
|
|
||||||
it('should create a new Opcode', function() {
|
it('should create a new Opcode', function() {
|
||||||
var opcode = new Opcode(5);
|
var opcode = new Opcode(5);
|
||||||
|
should.exist(opcode);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should convert to a string with this handy syntax', function() {
|
it('should convert to a string with this handy syntax', function() {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user