Sha256: 74ed708defcc5cc3b143c6b025c6ca96c7aac0185fbf5bce89c21778c41e98ac
Contents?: true
Size: 559 Bytes
Versions: 11
Compression:
Stored size: 559 Bytes
Contents
require 'spec_helper' 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
11 entries across 11 versions & 1 rubygems