Sha256: 2b5db21e296ebf713fc3183c2c1625c71076f3e98bc88561d8a10fa82e54f162
Contents?: true
Size: 1.78 KB
Versions: 32
Compression:
Stored size: 1.78 KB
Contents
require 'spec_helper' describe Spree::PermissionSets::PromotionDisplay 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(:display, Spree::Promotion) } it { is_expected.to be_able_to(:display, Spree::PromotionRule) } it { is_expected.to be_able_to(:display, Spree::PromotionAction) } it { is_expected.to be_able_to(:display, Spree::PromotionCategory) } it { is_expected.to be_able_to(:display, Spree::PromotionCode) } it { is_expected.to be_able_to(:admin, Spree::Promotion) } it { is_expected.to be_able_to(:admin, Spree::PromotionRule) } it { is_expected.to be_able_to(:admin, Spree::PromotionAction) } it { is_expected.to be_able_to(:admin, Spree::PromotionCategory) } it { is_expected.to be_able_to(:admin, Spree::PromotionCode) } it { is_expected.to be_able_to(:edit, Spree::Promotion) } end context "when not activated" do it { is_expected.not_to be_able_to(:display, Spree::Promotion) } it { is_expected.not_to be_able_to(:display, Spree::PromotionRule) } it { is_expected.not_to be_able_to(:display, Spree::PromotionAction) } it { is_expected.not_to be_able_to(:display, Spree::PromotionCategory) } it { is_expected.not_to be_able_to(:display, Spree::PromotionCode) } it { is_expected.not_to be_able_to(:admin, Spree::Promotion) } it { is_expected.not_to be_able_to(:admin, Spree::PromotionRule) } it { is_expected.not_to be_able_to(:admin, Spree::PromotionAction) } it { is_expected.not_to be_able_to(:admin, Spree::PromotionCategory) } it { is_expected.not_to be_able_to(:admin, Spree::PromotionCode) } it { is_expected.not_to be_able_to(:edit, Spree::Promotion) } end end
Version data entries
32 entries across 32 versions & 1 rubygems