push
13 of 240 new or added lines in 58 files covered. (5.42%)
3638 existing lines in 134 files now uncovered.1951 of 15719 relevant lines covered (12.41%)
0.27 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
|
× |