mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
ba792ea202
and there was much rejoicing
11 lines
181 B
JavaScript
11 lines
181 B
JavaScript
require('../common');
|
|
|
|
var
|
|
path = require('path'),
|
|
fs = require('fs'),
|
|
fn = path.join(fixturesDir, 'empty.txt');
|
|
|
|
fs.readFile(fn, function(err, data) {
|
|
assert.ok(data);
|
|
});
|