Module: SimpleCov::ResultMerger::LegacyFormatAdapter
| Relationships & Source Files | |
| Defined in: | lib/simplecov/result_merger/legacy_format_adapter.rb |
Overview
We changed the format of the raw result data in simplecov, as people are likely to have "old" resultsets lying around (but not too old so that they're still considered we can adapt them). See https://github.com/simplecov-ruby/simplecov/pull/824#issuecomment-576049747
Class Method Summary
- .call(result) mod_func
-
.pre_0_18?(result) ⇒ Boolean
mod_func
Pre-0.18 coverage data pointed from file directly to an array of line coverage rather than a
{"lines" => [...]}hash. - .upgrade(result) mod_func
Class Method Details
.call(result) (mod_func)
[ GitHub ]
.pre_0_18?(result) ⇒ Boolean (mod_func)
Pre-0.18 coverage data pointed from file directly to an array of
line coverage rather than a {"lines" => [...]} hash.