Sha256: 095c9edcae427de449be4783ad90dfd101b2fde77ade640cd9c38c8e006c93be
Contents?: true
Size: 596 Bytes
Versions: 48
Compression:
Stored size: 596 Bytes
Contents
# frozen_string_literal: true require 'rails_helper' RSpec.describe Spree::PermissionSets::StockManagement 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::StockItem) } it { is_expected.to be_able_to(:display, Spree::StockLocation) } end context "when not activated" do it { is_expected.not_to be_able_to(:manage, Spree::StockItem) } it { is_expected.not_to be_able_to(:display, Spree::StockLocation) } end end
Version data entries
48 entries across 48 versions & 2 rubygems