Exception: Uncov::MissingSimplecovReport
- Inherits:
-
SimplecovError
- Object
- StandardError
- Error
- FinderError
- SimplecovError
- Uncov::MissingSimplecovReport
- Defined in:
- lib/uncov.rb
Instance Attribute Summary collapse
-
#coverage_path ⇒ Object
readonly
Returns the value of attribute coverage_path.
Instance Method Summary collapse
-
#initialize(coverage_path) ⇒ MissingSimplecovReport
constructor
A new instance of MissingSimplecovReport.
- #message ⇒ Object
Methods inherited from Error
Constructor Details
#initialize(coverage_path) ⇒ MissingSimplecovReport
Returns a new instance of MissingSimplecovReport.
70 |
# File 'lib/uncov.rb', line 70 def initialize(coverage_path) = @coverage_path = coverage_path |
Instance Attribute Details
#coverage_path ⇒ Object (readonly)
Returns the value of attribute coverage_path.
68 69 70 |
# File 'lib/uncov.rb', line 68 def coverage_path @coverage_path end |
Instance Method Details
#message ⇒ Object
71 |
# File 'lib/uncov.rb', line 71 def = "SimpleCov results not found at #{coverage_path.inspect}" |