undercover
undercover copied to clipboard
Does not find uncovered sinatra routes
Undercover does not find this uncovered sinatra route:
get '/dummy_path' do
puts "This line is not covered"
end
git diff master
:
+ get '/dummy_path' do
+ puts "This line is not covered"
+ end
undercover -c master
:
undercover: ✅ No coverage is missing in latest changes
Undercover finished in 0.0505s
simplecov HTML formatter output:
@antondalgren hi and thanks for reporting! There's a known edge-cases that might or may not be related to this: #83. Can you include a sample file that shows this behaviour? I'll look into it