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
UNCOV
1
|
module QuestionAnalytic |
× |
UNCOV
2
|
def unique_character_count |
× |
UNCOV
3
|
txt.gsub(/\s+/, '').downcase.split(//).uniq.length |
× |
UNCOV
4
|
end
|
× |
5 |
|
|
UNCOV
6
|
def character_count |
× |
UNCOV
7
|
txt.bytesize |
× |
UNCOV
8
|
end
|
× |
9 |
|
|
UNCOV
10
|
def word_count |
× |
UNCOV
11
|
txt.gsub(/[^0-9A-Za-z]/, ' ').split(' ').count |
× |
UNCOV
12
|
end
|
× |
UNCOV
13
|
end
|
× |