Browse Source

add Script#removeCodeSeparators tests

patch-2
Manuel Araoz 10 years ago
parent
commit
63bc625c33
  1. 5
      test/script.js

5
test/script.js

@ -494,5 +494,10 @@ describe('Script', function() {
});
});
describe('#removeCodeseparators', function() {
it('should remove any OP_CODESEPARATORs', function() {
Script('OP_CODESEPARATOR OP_0 OP_CODESEPARATOR').removeCodeseparators().toString().should.equal('OP_0');
});
});
});

Loading…
Cancel
Save