50 lines
1.2 KiB
Ruby
50 lines
1.2 KiB
Ruby
|
require 'rails_helper'
|
||
|
|
||
|
describe SubcredditPolicy do
|
||
|
subject { SubcredditPolicy.new(user, subcreddit) }
|
||
|
|
||
|
context 'when user is a guest' do
|
||
|
let(:subcreddit) { create(:subcreddit) }
|
||
|
let(:user) { GuestUser.new }
|
||
|
|
||
|
it { should grant(:index) }
|
||
|
it { should grant(:show) }
|
||
|
|
||
|
it { should_not grant(:new) }
|
||
|
it { should_not grant(:create) }
|
||
|
it { should_not grant(:edit) }
|
||
|
it { should_not grant(:update) }
|
||
|
it { should_not grant(:destroy) }
|
||
|
end
|
||
|
|
||
|
context 'when user is registered' do
|
||
|
let(:user) { create(:user) }
|
||
|
|
||
|
context 'when not owner' do
|
||
|
let(:subcreddit) { create(:subcreddit) }
|
||
|
|
||
|
it { should grant(:index) }
|
||
|
it { should grant(:show) }
|
||
|
it { should grant(:new) }
|
||
|
it { should grant(:create) }
|
||
|
|
||
|
it { should_not grant(:edit) }
|
||
|
it { should_not grant(:update) }
|
||
|
it { should_not grant(:destroy) }
|
||
|
end
|
||
|
|
||
|
context 'when owner' do
|
||
|
let(:subcreddit) { create(:subcreddit, owner: user) }
|
||
|
|
||
|
it { should grant(:index) }
|
||
|
it { should grant(:show) }
|
||
|
it { should grant(:new) }
|
||
|
it { should grant(:create) }
|
||
|
it { should grant(:edit) }
|
||
|
it { should grant(:update) }
|
||
|
|
||
|
it { should_not grant(:destroy) }
|
||
|
end
|
||
|
end
|
||
|
end
|