push
0 of 1 new or added line in 1 file covered. (0.0%)
2711 existing lines in 117 files now uncovered.6452 of 13531 relevant lines covered (47.68%)
8.18 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
|