Class: Qaxqa::AllSuite
- Inherits:
-
Object
- Object
- Qaxqa::AllSuite
- Defined in:
- lib/qaxqa/all_suite.rb
Overview
Module class to set XML parsed attributes
Instance Attribute Summary collapse
-
#doc ⇒ Object
Returns the value of attribute doc.
-
#testsuites ⇒ Object
Returns the value of attribute testsuites.
Instance Method Summary collapse
-
#initialize(path = nil) ⇒ AllSuite
constructor
A new instance of AllSuite.
Constructor Details
#initialize(path = nil) ⇒ AllSuite
Returns a new instance of AllSuite.
12 13 14 15 16 |
# File 'lib/qaxqa/all_suite.rb', line 12 def initialize(path = nil) @testsuites = [] @doc = nil fetch! path unless path.nil? end |
Instance Attribute Details
#doc ⇒ Object
Returns the value of attribute doc.
10 11 12 |
# File 'lib/qaxqa/all_suite.rb', line 10 def doc @doc end |
#testsuites ⇒ Object
Returns the value of attribute testsuites.
10 11 12 |
# File 'lib/qaxqa/all_suite.rb', line 10 def testsuites @testsuites end |