test: use mustNotCall() in test-stream2-objects

Use `common.mustNotCall()` in test-stream2-objects.js to confirm that
noop function is never invoked.

PR-URL: https://github.com/nodejs/node/pull/13249
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
Rich Trott 2017-05-26 14:54:51 -07:00
parent bb91879f31
commit 64ded9f9bc

View File

@ -76,7 +76,7 @@ function toArray(callback) {
function fromArray(list) {
const r = new Readable({ objectMode: true });
r._read = common.noop;
r._read = common.mustNotCall();
list.forEach(function(chunk) {
r.push(chunk);
});
@ -164,7 +164,7 @@ test('can read strings as objects', function(t) {
const r = new Readable({
objectMode: true
});
r._read = common.noop;
r._read = common.mustNotCall();
const list = ['one', 'two', 'three'];
list.forEach(function(str) {
r.push(str);
@ -182,7 +182,7 @@ test('read(0) for object streams', function(t) {
const r = new Readable({
objectMode: true
});
r._read = common.noop;
r._read = common.mustNotCall();
r.push('foobar');
r.push(null);
@ -198,7 +198,7 @@ test('falsey values', function(t) {
const r = new Readable({
objectMode: true
});
r._read = common.noop;
r._read = common.mustNotCall();
r.push(false);
r.push(0);
@ -249,7 +249,7 @@ test('high watermark push', function(t) {
highWaterMark: 6,
objectMode: true
});
r._read = common.noop;
r._read = common.mustNotCall();
for (let i = 0; i < 6; i++) {
const bool = r.push(i);
assert.strictEqual(bool, i !== 5);