Module: Inferno::Entities::HasRunnable

Included in:
Preset, Result, TestRun
Defined in:
lib/inferno/entities/has_runnable.rb

Instance Method Summary collapse

Instance Method Details

#runnableInferno::Entities::Test, ...

Returns the Test, TestGroup, or TestSuite associated with this entity



7
8
9
10
11
# File 'lib/inferno/entities/has_runnable.rb', line 7

def runnable
  return @runnable if @runnable

  @runnable = (test || test_group || test_suite || load_runnable)
end