###
Module dependencies.
###

class FsMock

  readFile: (path, callback) ->
    err = null
    err = new Error 'err' if path is 'FORCE_ERROR'
    page = 'html-mock'
    page = 'custom-path' if path is 'custom/path.html'

    callback err, page

module.exports = new FsMock