Hello, I would like to be able to skip some unreachable branches but I only see full coverage skipping with nocov.
For example the following code will report the else is never run but it is unreachable:
match = match = /^(\d+)([abc])$/.match(str)
raise unless match
case match[2]
when "a"
...
when "b"
...
when "c"
...
end
Is there another tag or can such be implemented that will only ignore branch coverage?