push
0 of 2 new or added lines in 1 file covered. (0.0%)
3735 existing lines in 129 files now uncovered.1940 of 15644 relevant lines covered (12.4%)
0.25 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
|