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

Version Path
solidus_core-2.6.6 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core-2.7.4 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core-2.7.3 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core-2.6.5 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core-2.7.2 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core-2.6.4 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core-2.6.3 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core-2.7.1 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core-2.6.2 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core_devise_token_auth-2.8.0.alpha.14 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core_devise_token_auth-2.8.0.alpha.13 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core_devise_token_auth-2.8.0.alpha.12 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core_devise_token_auth-2.8.0.alpha.11 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core_devise_token_auth-2.8.0.alpha.10 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core_devise_token_auth-2.8.0.alpha.9 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core_devise_token_auth-2.8.0.alpha.8 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core_devise_token_auth-2.8.0.alpha.7 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core_devise_token_auth-2.8.0.alpha.6 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core_devise_token_auth-2.8.0.alpha.5 spec/models/spree/permission_sets/promotion_management_spec.rb
solidus_core_devise_token_auth-2.8.0.alpha.4 spec/models/spree/permission_sets/promotion_management_spec.rb