Class: Inspec::MockProvider

Inherits:
FileProvider show all
Defined in:
lib/inspec/file_provider.rb

Overview

class FileProvider

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from FileProvider

#binread, for_path, #relative_provider

Constructor Details

#initialize(path) ⇒ MockProvider

Returns a new instance of MockProvider.



66
67
68
69
# File 'lib/inspec/file_provider.rb', line 66

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

Instance Attribute Details

#filesObject (readonly)

Returns the value of attribute files.



65
66
67
# File 'lib/inspec/file_provider.rb', line 65

def files
  @files
end

Instance Method Details

#read(file) ⇒ Object



71
72
73
# File 'lib/inspec/file_provider.rb', line 71

def read(file)
  @data[file]
end