The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
30 lines
571 B
JavaScript
30 lines
571 B
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
var fs = require('fs');
|
|
var path = require('path');
|
|
|
|
var file = path.join(common.fixturesDir, 'x.txt');
|
|
var data = '';
|
|
var first = true;
|
|
|
|
var stream = fs.createReadStream(file);
|
|
stream.setEncoding('utf8');
|
|
stream.on('data', function(chunk) {
|
|
data += chunk;
|
|
if (first) {
|
|
first = false;
|
|
stream.resume();
|
|
}
|
|
});
|
|
|
|
process.nextTick(function() {
|
|
stream.pause();
|
|
setTimeout(function() {
|
|
stream.resume();
|
|
}, 100);
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(data, 'xyz\n');
|
|
});
|