Sha256: 9a595d855377eeb51c9f86a0ac40389e0fdea895230cdd7078738b8e6d7ec4d5
Contents?: true
Size: 1.57 KB
Versions: 15
Compression:
Stored size: 1.57 KB
Contents
require 'spec_helper' describe Spree::PermissionSets::ProductManagement 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::Product) } it { is_expected.to be_able_to(:manage, Spree::Image) } it { is_expected.to be_able_to(:manage, Spree::Variant) } it { is_expected.to be_able_to(:manage, Spree::OptionValue) } it { is_expected.to be_able_to(:manage, Spree::ProductProperty) } it { is_expected.to be_able_to(:manage, Spree::OptionType) } it { is_expected.to be_able_to(:manage, Spree::Property) } it { is_expected.to be_able_to(:manage, Spree::Taxonomy) } it { is_expected.to be_able_to(:manage, Spree::Taxon) } it { is_expected.to be_able_to(:manage, Spree::Classification) } end context "when not activated" do it { is_expected.not_to be_able_to(:manage, Spree::Product) } it { is_expected.not_to be_able_to(:manage, Spree::Image) } it { is_expected.not_to be_able_to(:manage, Spree::Variant) } it { is_expected.not_to be_able_to(:manage, Spree::OptionValue) } it { is_expected.not_to be_able_to(:manage, Spree::ProductProperty) } it { is_expected.not_to be_able_to(:manage, Spree::OptionType) } it { is_expected.not_to be_able_to(:manage, Spree::Property) } it { is_expected.not_to be_able_to(:manage, Spree::Taxonomy) } it { is_expected.not_to be_able_to(:manage, Spree::Taxon) } it { is_expected.not_to be_able_to(:manage, Spree::Classification) } end end
Version data entries
15 entries across 15 versions & 1 rubygems