push
0 of 1 new or added line in 1 file covered. (0.0%)
6774 existing lines in 129 files now uncovered.1939 of 15613 relevant lines covered (12.42%)
0.25 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
|