Sha256: 38150394d9aa745aa24cb6a4d73f48f71ebc1d25cf212702a63b8ba1492eaa9f
Contents?: true
Size: 1.61 KB
Versions: 48
Compression:
Stored size: 1.61 KB
Contents
# frozen_string_literal: true 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
48 entries across 48 versions & 2 rubygems