travis-ci
5 of 5 new or added lines in 2 files covered. (100.0%)
38 of 3310 relevant lines covered (1.15%)
0.01 hits per line
1 |
module UIElements |
× |
2 |
def item text |
× |
3 |
"<li>#{text}</li>"
|
× |
4 |
end
|
× |
5 |
|
× |
6 |
def list *entries |
× |
7 |
"<ul>#{entries.map { |i| item(i) }.join}</ul>"
|
× |
8 |
end
|
× |
9 |
|
× |
10 |
def italics words |
× |
11 |
"<i>#{words}</i>"
|
× |
12 |
end
|
× |
13 |
|
× |
14 |
def bold words |
× |
15 |
"<b>#{words}</b>"
|
× |
16 |
end
|
× |
17 |
|
× |
18 |
def ahref link, text |
× |
19 |
"<a href=\"#{link}\">#{text}</a>"
|
× |
20 |
end
|
× |
21 |
|
× |
22 |
def para text |
× |
23 |
"<p>#{text}</p>"
|
× |
24 |
end
|
× |
25 |
end
|
× |
26 |
|
× |