Class: Inferno::Entities::Preset
- Includes:
- HasRunnable
- Defined in:
- lib/inferno/entities/preset.rb
Overview
A Preset
represents a set of input values for a runnable.
Constant Summary collapse
- ATTRIBUTES =
[ :id, :test_suite_id, :inputs, :title ].freeze
Instance Method Summary collapse
-
#initialize(params) ⇒ Preset
constructor
A new instance of Preset.
Methods included from HasRunnable
Methods inherited from Entity
Constructor Details
#initialize(params) ⇒ Preset
Returns a new instance of Preset.
19 20 21 |
# File 'lib/inferno/entities/preset.rb', line 19 def initialize(params) super(params, ATTRIBUTES) end |