Method: RSpecSystem::Helper#execute

Defined in:
lib/rspec-system/helper.rb

#executeHash <Symbol, Any>

This method is abstract.

Always override this method with your own execution routine.

This method is executed to retrieve the data for this helper. It is always overridden by sub-classes.

Here we perform the actual step to retrieve the helper data, returning the result as a basic hash which gets stored for later retrieval via the helper object.

Returns:

  • (Hash <Symbol, Any>)

    return a hash of results, with symbolic keys



103
104
105
# File 'lib/rspec-system/helper.rb', line 103

def execute
  raise "The #execute method has not be overridden in this class"
end