parent
8a2a9cb4e7
commit
d2b790fef9
2 changed files with 20 additions and 0 deletions
test
17
test/script.js
Normal file
17
test/script.js
Normal file
|
@ -0,0 +1,17 @@
|
|||
var Script = require('../src/script.js')
|
||||
var assert = require('assert')
|
||||
|
||||
describe('Script', function() {
|
||||
describe('constructor', function() {
|
||||
it('works for a byte array', function() {
|
||||
assert.ok(new Script([]))
|
||||
})
|
||||
|
||||
it('throws an error when input is not an array', function() {
|
||||
assert.throws(function(){
|
||||
new Script({})
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue