Module: Inferno::Entities::HasRunnable
Instance Method Summary collapse
-
#runnable ⇒ Inferno::Entities::Test, ...
Returns the Test, TestGroup, or TestSuite associated with this entity.
Instance Method Details
#runnable ⇒ Inferno::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 |