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.
21 lines
585 B
21 lines
585 B
var common = require('../common');
|
|
var assert = require('assert');
|
|
var path = require('path');
|
|
var fs = require('fs');
|
|
var got_error = false;
|
|
|
|
var filename = path.join(common.fixturesDir, 'does_not_exist.txt');
|
|
fs.readFile(filename, 'raw', function(err, content) {
|
|
if (err) {
|
|
got_error = true;
|
|
} else {
|
|
common.debug('cat returned some content: ' + content);
|
|
common.debug('this shouldn\'t happen as the file doesn\'t exist...');
|
|
assert.equal(true, false);
|
|
}
|
|
});
|
|
|
|
process.addListener('exit', function() {
|
|
console.log('done');
|
|
assert.equal(true, got_error);
|
|
});
|
|
|