Class: Cucumber::Runtime::ForProgrammingLanguages
- Extended by:
- Forwardable
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/cucumber-8.0.0/lib/cucumber/runtime/for_programming_languages.rb
Overview
This is what a programming language will consider to be a runtime.
It’s a thin class that directs the handul of methods needed by the programming languages to the right place.
Instance Attribute Summary collapse
-
#support_code ⇒ Object
readonly
Returns the value of attribute support_code.
Instance Method Summary collapse
-
#initialize(support_code, user_interface) ⇒ ForProgrammingLanguages
constructor
A new instance of ForProgrammingLanguages.
Constructor Details
#initialize(support_code, user_interface) ⇒ ForProgrammingLanguages
Returns a new instance of ForProgrammingLanguages.
17 18 19 20 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/cucumber-8.0.0/lib/cucumber/runtime/for_programming_languages.rb', line 17 def initialize(support_code, user_interface) @support_code = support_code @user_interface = user_interface end |
Instance Attribute Details
#support_code ⇒ Object (readonly)
Returns the value of attribute support_code.
15 16 17 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/cucumber-8.0.0/lib/cucumber/runtime/for_programming_languages.rb', line 15 def support_code @support_code end |