mock-fs-require-fix
Version:
Fork of the tschaub/mock-fs project.
26 lines (19 loc) • 487 B
JavaScript
var assert = require('assert');
var fs = require('fs');
var mock = require('..');
/**
* Timed test. This includes the mock setup and teardown as part of the overall
* test time.
* @param {function(Error)} done Callback.
*/
exports.test = function(done) {
mock({
'foo-mock.txt': 'foo'
});
fs.readFile('foo-mock.txt', 'utf8', function(err, str) {
assert.ifError(err);
assert.equal(str, 'foo');
mock.restore();
done();
});
};