2025-04-28 12:25:20 +08:00

15 lines
389 B
JavaScript

'use strict';
const assert = require('assert');
const 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() {
const buf = Buffer.from('hello');
assert.strictEqual(false, ref.isNull(buf));
});
});