Sha256: a20bae4e41861d3204bef6e067155e1f787d810be5b15792d6e8387c336879f4
Contents?: true
Size: 1.79 KB
Versions: 11
Compression:
Stored size: 1.79 KB
Contents
require 'rails_helper' RSpec.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
11 entries across 11 versions & 1 rubygems