push
21 of 240 new or added lines in 58 files covered. (8.75%)
3412 existing lines in 129 files now uncovered.2422 of 15651 relevant lines covered (15.48%)
1.47 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
|
× |