Class: SpecTracker::SpecParser::Scenario
- Inherits:
-
Object
- Object
- SpecTracker::SpecParser::Scenario
- Defined in:
- lib/spec_tracker/spec_parser/scenario.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(id:, name:) ⇒ Scenario
constructor
A new instance of Scenario.
Constructor Details
#initialize(id:, name:) ⇒ Scenario
Returns a new instance of Scenario.
6 7 8 9 |
# File 'lib/spec_tracker/spec_parser/scenario.rb', line 6 def initialize(id:, name:) @id = id @name = name end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
4 5 6 |
# File 'lib/spec_tracker/spec_parser/scenario.rb', line 4 def id @id end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
4 5 6 |
# File 'lib/spec_tracker/spec_parser/scenario.rb', line 4 def name @name end |