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