linx-simulator2/node_modules/ref/test/isNull.js
2019-09-18 11:11:16 +03:00

17 lines
366 B
JavaScript

var assert = require('assert')
var ref = require('../')
describe('isNull', function () {
it('should return "true" for the NULL pointer', function () {
assert.strictEqual(true, ref.isNull(ref.NULL))
})
it('should return "false" for a valid Buffer', function () {
var buf = new Buffer('hello')
assert.strictEqual(false, ref.isNull(buf))
})
})