Class: Moto::Clients::Base
- Inherits:
-
Object
- Object
- Moto::Clients::Base
- Includes:
- EmptyListener, TestLogging
- Defined in:
- lib/clients/base.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#context ⇒ Object
readonly
Returns the value of attribute context.
Instance Method Summary collapse
- #init ⇒ Object
-
#initialize(context) ⇒ Base
constructor
A new instance of Base.
Methods included from TestLogging
Methods included from EmptyListener
#end_run, #end_test, #start_run, #start_test
Constructor Details
#initialize(context) ⇒ Base
Returns a new instance of Base.
12 13 14 |
# File 'lib/clients/base.rb', line 12 def initialize(context) @context = context end |
Instance Attribute Details
#context ⇒ Object (readonly)
Returns the value of attribute context.
10 11 12 |
# File 'lib/clients/base.rb', line 10 def context @context end |
Instance Method Details
#init ⇒ Object
16 17 18 |
# File 'lib/clients/base.rb', line 16 def init # abstract end |