Sha256: aa334a872e50bf5b8be9fd586d4e5fdb3302a033e814900e447213335b4c754e
Contents?: true
Size: 890 Bytes
Versions: 27
Compression:
Stored size: 890 Bytes
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) } 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
27 entries across 27 versions & 2 rubygems