class Inspec::MockProvider

def initialize(path)

def initialize(path)
  @data = path[:mock]
  @files = @data.keys
end

def read(file)

def read(file)
  @data[file]
end