mirror of https://github.com/nodejs/node.git
10 lines
180 B
JavaScript
10 lines
180 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);
|
||
|
});
|