mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
562 B
32 lines
562 B
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
|
|
var Duplex = require('stream').Transform;
|
|
|
|
var stream = new Duplex({ objectMode: true });
|
|
|
|
assert(stream._readableState.objectMode);
|
|
assert(stream._writableState.objectMode);
|
|
|
|
var written;
|
|
var read;
|
|
|
|
stream._write = function(obj, _, cb) {
|
|
written = obj;
|
|
cb();
|
|
};
|
|
|
|
stream._read = function() {};
|
|
|
|
stream.on('data', function(obj) {
|
|
read = obj;
|
|
});
|
|
|
|
stream.push({ val: 1 });
|
|
stream.end({ val: 2 });
|
|
|
|
process.on('exit', function() {
|
|
assert(read.val === 1);
|
|
assert(written.val === 2);
|
|
});
|
|
|