class RSpecSystem::Result

This class represents raw results from a helper command

Public Instance Methods

[](name) click to toggle source

Returns the value of a member, with hash syntax.

@param name [String, Symbol] name of parameter to retrieve

# File lib/rspec-system/result.rb, line 10
def [](name)
  @table[name.to_sym]
end
to_hash() click to toggle source

Return a hash

@return [Hash] a hash representation of the results

# File lib/rspec-system/result.rb, line 17
def to_hash
  @table
end