exports.notExists = function(path) {
  return function(result) {
    if (fs.existsSync(path) !== false) {
      return error(result, 'Expected "' + path + '" not to exist.');
    }