push
2 of 2 new or added lines in 1 file covered. (100.0%)
2711 existing lines in 117 files now uncovered.6454 of 13532 relevant lines covered (47.69%)
7.81 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
|