module Roda::RodaPlugins::RenderCoverage::InstanceMethods

def template_path(opts)

Convert template paths to real paths to try to ensure the same template is cached.
def template_path(opts)
  path = super
  if File.file?(path)
    File.realpath(path)
  else
    path
  end
end