push
travis-ci-com
182 of 197 relevant lines covered (92.39%)
30.97 hits per line
1 |
class NewsPostPolicy < ApplicationPolicy |
6✔ |
2 |
def index? |
6✔ |
3 |
true
|
24✔ |
4 |
end
|
|
5 |
|
|
6 |
def show? |
6✔ |
7 |
true
|
24✔ |
8 |
end
|
|
9 |
|
|
10 |
def create? |
6✔ |
11 |
true if user.try(:has_role?, 'Administrator') |
120✔ |
12 |
end
|
|
13 |
|
|
14 |
def update? |
6✔ |
15 |
true if user.try(:has_role?, 'Administrator') |
102✔ |
16 |
end
|
|
17 |
|
|
18 |
def destroy? |
6✔ |
19 |
true if user.try(:has_role?, 'Administrator') |
48✔ |
20 |
end
|
|
21 |
end
|