Sha256: b5368f82a0cfb888749fd2ec2c2a78bd97353d6db54a60313ec3a2fa9e23df6d
Contents?: true
Size: 898 Bytes
Versions: 1
Compression:
Stored size: 898 Bytes
Contents
<html> <head> <title>Rcov Code Coverage Results</title> <style> <%= inline_css("default.css") %> </style> </head> <body> <h1>Rcov Code Coverage Results</h1> <p>C0 code coverage information.</p> <table> <tr> <th>File Path</th> <th>Percent run</th> </tr> <% count = 0 %> <% @rcov.each_pair do |fname, file| %> <tr> <td><%= fname %></td> <td><%= file[:percent_run] %></td> </tr> <% count += 1 %> <% end %> </table> <% @rcov.each_pair do |fname, file| %> <h2> <%= fname %></h2> <table class="rcov_code"> <% file[:lines].each do |line| %> <tr> <% css_class = line[:was_run] ? "rcov_run" : "rcov_not_run" %> <td class="<%= css_class %>"><pre><%= line[:content] %></pre></td> </tr> <% end %> </table> <% end %> <p>Generated on <%= Time.now.localtime %></p> </body> </html>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jscruggs-metric_fu-1.0.0 | lib/templates/standard/rcov.html.erb |