Sha256: e5b0e414772131da686f75dcbbdc8252d2c27cb2962fbec8205738a9ac20cbf9
Contents?: true
Size: 1.01 KB
Versions: 21
Compression:
Stored size: 1.01 KB
Contents
# 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) } it { is_expected.to be_able_to(:manage, Spree::PromotionCode) } 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) } it { is_expected.not_to be_able_to(:manage, Spree::PromotionCode) } end end
Version data entries
21 entries across 21 versions & 1 rubygems