Sha256: 9531b22b3e3ba20df6556f5e39ff46a6172cd33853158febdf642cdbbc5ba71d
Contents?: true
Size: 859 Bytes
Versions: 11
Compression:
Stored size: 859 Bytes
Contents
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
Version data entries
11 entries across 11 versions & 1 rubygems