Sha256: 00bd8f3eaa6ee4a615b5424576877a1c6b38e76992530470c186258d80a4f798
Contents?: true
Size: 558 Bytes
Versions: 32
Compression:
Stored size: 558 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
32 entries across 32 versions & 1 rubygems