Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
24 lines
536 B
JavaScript
24 lines
536 B
JavaScript
'use strict';
|
|
var fs = require('fs');
|
|
var assert = require('assert');
|
|
var path = require('path');
|
|
|
|
var common = require('../common');
|
|
|
|
var file = path.join(common.tmpDir, '/read_stream_fd_test.txt');
|
|
var input = 'hello world';
|
|
var output = '';
|
|
var fd, stream;
|
|
|
|
fs.writeFileSync(file, input);
|
|
fd = fs.openSync(file, 'r');
|
|
|
|
stream = fs.createReadStream(null, { fd: fd, encoding: 'utf8' });
|
|
stream.on('data', function(data) {
|
|
output += data;
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
fs.unlinkSync(file);
|
|
assert.equal(output, input);
|
|
});
|