Skip to content

Instantly share code, notes, and snippets.

@murindwaz
Forked from indexzero/mockreadwritestream.js
Created March 1, 2018 18:20
Show Gist options
  • Save murindwaz/4f5f3bb2342dabb96cc4f527eca53185 to your computer and use it in GitHub Desktop.
Save murindwaz/4f5f3bb2342dabb96cc4f527eca53185 to your computer and use it in GitHub Desktop.
A mock stream for node.js that is both Readable and Writeable.
var events = require('events'),
util = require('util');
var MockReadWriteStream = helpers.MockReadWriteStream = function () {
//
// No need to do anything here, it's just a mock.
//
};
util.inherits(MockReadWriteStream, events.EventEmitter);
['resume', 'pause', 'setEncoding', 'flush'].forEach(function (method) {
MockReadWriteStream.prototype[method] = function () { /* Mock */ };
});
MockReadWriteStream.prototype.write = function (msg) {
this.emit('data', msg);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment