push
13 of 240 new or added lines in 58 files covered. (5.42%)
3638 existing lines in 134 files now uncovered.1951 of 15719 relevant lines covered (12.41%)
0.27 hits per line
1 |
class ColumnHeader < QuestionnaireHeader |
1✔ |
2 |
def complete(_count, _answer = nil) |
1✔ |
UNCOV
3
|
html = '<tr>'
|
× |
UNCOV
4
|
html += '<th style="width: 15%">' + txt + '</th>' |
× |
UNCOV
5
|
html.html_safe |
× |
6 |
end
|
|
7 |
|
|
8 |
def view_completed_question(_count, _answer) |
1✔ |
UNCOV
9
|
html = '<tr>'
|
× |
UNCOV
10
|
html += '<th style="width: 15%">' + txt + '</th>' |
× |
UNCOV
11
|
html.html_safe |
× |
12 |
end
|
|
13 |
end
|