# frozen_string_literal: true require 'rails_helper' RSpec.describe Spree::PermissionSets::PromotionManagement do let(:ability) { DummyAbility.new } subject { ability } context "when activated" do before do described_class.new(ability).activate! end it { is_expected.to be_able_to(:manage, Spree::Promotion) } it { is_expected.to be_able_to(:manage, Spree::PromotionRule) } it { is_expected.to be_able_to(:manage, Spree::PromotionAction) } it { is_expected.to be_able_to(:manage, Spree::PromotionCategory) } end context "when not activated" do it { is_expected.not_to be_able_to(:manage, Spree::Promotion) } it { is_expected.not_to be_able_to(:manage, Spree::PromotionRule) } it { is_expected.not_to be_able_to(:manage, Spree::PromotionAction) } it { is_expected.not_to be_able_to(:manage, Spree::PromotionCategory) } end end