class SourceReaders::InspecReader

def load_libs

def load_libs
  tests = @target.files.find_all do |path|
    path.start_with?('libraries') && path.end_with?('.rb')
  end
  Hash[tests.map { |x| [x, @target.read(x)] }.delete_if { |_file, contents| contents.nil? }]
end