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
569 B
32 lines
569 B
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
|
|
var Transform = require('stream').Transform;
|
|
|
|
var _transformCalled = false;
|
|
function _transform(d, e, n) {
|
|
_transformCalled = true;
|
|
n();
|
|
}
|
|
|
|
var _flushCalled = false;
|
|
function _flush(n) {
|
|
_flushCalled = true;
|
|
n();
|
|
}
|
|
|
|
var t = new Transform({
|
|
transform: _transform,
|
|
flush: _flush
|
|
});
|
|
|
|
t.end(Buffer.from('blerg'));
|
|
t.resume();
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(t._transform, _transform);
|
|
assert.equal(t._flush, _flush);
|
|
assert(_transformCalled);
|
|
assert(_flushCalled);
|
|
});
|
|
|