How to enable template coverage support for simplecov

Since Ruby 3.2.0 Show archive.org snapshot you can measure coverage support for eval statements and support has been added for the simplecov gem as well Show archive.org snapshot .

This allows to track coverage across ruby templates such as haml, erb, ...

Simply set this within simplecov

SimpleCov.start do
  enable_coverage_for_eval
end
Felix Eschey