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.



58
59
60
61
# File 'lib/inspec/file_provider.rb', line 58

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

Instance Attribute Details

#filesObject (readonly)

Returns the value of attribute files.



57
58
59
# File 'lib/inspec/file_provider.rb', line 57

def files
  @files
end

Instance Method Details

#read(file) ⇒ Object



63
64
65
# File 'lib/inspec/file_provider.rb', line 63

def read(file)
  @data[file]
end