Class: SimpleCov::RSpec::UncoveredLine Private
- Inherits:
-
Struct
- Object
- Struct
- SimpleCov::RSpec::UncoveredLine
- Defined in:
- lib/simplecov-rspec.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
An uncovered line
Instance Attribute Summary collapse
-
#line_number ⇒ Integer
private
The line number of the uncovered line.
-
#project_filename ⇒ String
private
The path to the file with uncovered lines relative to the project root.
Instance Attribute Details
#line_number ⇒ Integer
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
The line number of the uncovered line
247 |
# File 'lib/simplecov-rspec.rb', line 247 UncoveredLine = Struct.new(:project_filename, :line_number) |
#project_filename ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
The path to the file with uncovered lines relative to the project root
247 |
# File 'lib/simplecov-rspec.rb', line 247 UncoveredLine = Struct.new(:project_filename, :line_number) |