28 lines
1.3 KiB
Ruby
28 lines
1.3 KiB
Ruby
require "rails_helper"
|
|
require "cancan/matchers"
|
|
|
|
describe "Abilities::SDG::Manager" do
|
|
subject(:ability) { Ability.new(user) }
|
|
|
|
let(:user) { sdg_manager.user }
|
|
let(:sdg_manager) { create(:sdg_manager) }
|
|
|
|
it { should be_able_to(:read, SDG::Target) }
|
|
it { should be_able_to(:manage, SDG::LocalTarget) }
|
|
it { should be_able_to(:read, WebSection.find_by!(name: "sdg")) }
|
|
|
|
it { should_not be_able_to(:read, SDG::Manager) }
|
|
it { should_not be_able_to(:create, SDG::Manager) }
|
|
it { should_not be_able_to(:delete, SDG::Manager) }
|
|
it { should_not be_able_to(:read, WebSection.find_by!(name: "homepage")) }
|
|
|
|
it { should_not be_able_to(:update, create(:widget_card)) }
|
|
it { should be_able_to(:update, create(:widget_card, cardable: SDG::Phase.sample)) }
|
|
it { should be_able_to(:update, create(:widget_card, cardable: WebSection.find_by!(name: "sdg"))) }
|
|
it { should_not be_able_to(:update, create(:widget_card, cardable: WebSection.find_by!(name: "homepage"))) }
|
|
it { should_not be_able_to(:create, build(:widget_card)) }
|
|
it { should be_able_to(:create, build(:widget_card, cardable: SDG::Phase.sample)) }
|
|
it { should be_able_to(:create, build(:widget_card, cardable: WebSection.find_by!(name: "sdg"))) }
|
|
it { should_not be_able_to(:create, build(:widget_card, cardable: WebSection.find_by!(name: "homepage"))) }
|
|
end
|