push
0 of 2 new or added lines in 1 file covered. (0.0%)
3500 existing lines in 124 files now uncovered.2410 of 15576 relevant lines covered (15.47%)
1.24 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
|