Read more

How to enable template coverage support for simplecov

Avatar
Felix Eschey
March 29, 2023Software engineer at makandra GmbH

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 .

Illustration web development

Do you need DevOps-experts?

Your development team has a full backlog? No time for infrastructure architecture? Our DevOps team is ready to support you!

  • We build reliable cloud solutions with Infrastructure as code
  • We are experts in security, Linux and databases
  • We support your dev team to perform
Read more 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
Posted by Felix Eschey to makandra dev (2023-03-29 11:05)