Class: LearnLab::Test::Parsers::Null
- Inherits:
-
Object
- Object
- LearnLab::Test::Parsers::Null
- Defined in:
- lib/learn_lab/test/parsers/null.rb
Overview
Null parser. Used when no test suite has been detected.
Instance Attribute Summary collapse
-
#output ⇒ Object
readonly
Returns the value of attribute output.
Instance Method Summary collapse
- #duration ⇒ Object
- #example_count ⇒ Object
- #failure_count ⇒ Object
- #framework ⇒ Object
- #passing_count ⇒ Object
- #pending_count ⇒ Object
Instance Attribute Details
permalink #output ⇒ Object (readonly)
Returns the value of attribute output.
9 10 11 |
# File 'lib/learn_lab/test/parsers/null.rb', line 9 def output @output end |
Instance Method Details
permalink #duration ⇒ Object
[View source]
15 16 17 |
# File 'lib/learn_lab/test/parsers/null.rb', line 15 def duration 0 end |
permalink #example_count ⇒ Object
[View source]
19 20 21 |
# File 'lib/learn_lab/test/parsers/null.rb', line 19 def example_count 0 end |
permalink #failure_count ⇒ Object
[View source]
31 32 33 |
# File 'lib/learn_lab/test/parsers/null.rb', line 31 def failure_count 0 end |
permalink #framework ⇒ Object
[View source]
11 12 13 |
# File 'lib/learn_lab/test/parsers/null.rb', line 11 def framework 'none' end |
permalink #passing_count ⇒ Object
[View source]
23 24 25 |
# File 'lib/learn_lab/test/parsers/null.rb', line 23 def passing_count 0 end |
permalink #pending_count ⇒ Object
[View source]
27 28 29 |
# File 'lib/learn_lab/test/parsers/null.rb', line 27 def pending_count 0 end |