Sha256: 1fdde1ca249a6e4bca29197b2b0fa68155e57ac215090c8cacdade27f42b3e50
Contents?: true
Size: 1.7 KB
Versions: 16
Compression:
Stored size: 1.7 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::Prototype) } 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::Prototype) } 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
16 entries across 16 versions & 1 rubygems