push
0 of 1 new or added line in 1 file covered. (0.0%)
6593 existing lines in 123 files now uncovered.2413 of 15669 relevant lines covered (15.4%)
1.24 hits per line
1 |
module AuthHelper |
1✔ |
2 |
def self.get_home_action(user) |
1✔ |
UNCOV
3
|
user.role.get_home_action |
× |
4 |
rescue StandardError |
|
UNCOV
5
|
'drill'
|
× |
6 |
end
|
|
7 |
|
|
8 |
def self.get_home_controller(user) |
1✔ |
UNCOV
9
|
user.role.get_home_controller |
× |
10 |
rescue StandardError |
|
UNCOV
11
|
'tree_display'
|
× |
12 |
end
|
|
13 |
end
|