blob: b46fd7f32c6bd99808bf266214e21796c720dd3c [file] [log] [blame] [edit]
'use strict';
const common = require('../common');
const { Readable } = require('stream');
{
const r = new Readable({ read() {} });
r.on('end', common.mustNotCall());
r.on('data', common.mustCall());
r.on('error', common.mustCall());
r.push('asd');
r.push(null);
r.destroy(new Error('kaboom'));
}