Class: TestML::Call
- Inherits:
-
Object
- Object
- TestML::Call
- Defined in:
- lib/testml/runtime.rb
Overview
Instance Attribute Summary collapse
-
#args ⇒ Object
Returns the value of attribute args.
-
#name ⇒ Object
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name, args = []) ⇒ Call
constructor
A new instance of Call.
Constructor Details
#initialize(name, args = []) ⇒ Call
Returns a new instance of Call.
341 342 343 344 |
# File 'lib/testml/runtime.rb', line 341 def initialize(name, args=[]) @name = name @args = args if !args.empty? end |