Sha256: 9e305bebc8580a0b05df53c3d920426786758eaa27b62e708f7fd569a255b500
Contents?: true
Size: 712 Bytes
Versions: 32
Compression:
Stored size: 712 Bytes
Contents
require 'spec_helper' describe Spree::PermissionSets::StockTransferManagement 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::StockTransfer) } it { is_expected.to be_able_to(:manage, Spree::TransferItem) } it { is_expected.to be_able_to(:display, Spree::StockLocation) } end context "when not activated" do it { is_expected.to_not be_able_to(:manage, Spree::StockTransfer) } it { is_expected.to_not be_able_to(:manage, Spree::TransferItem) } it { is_expected.not_to be_able_to(:display, Spree::StockLocation) } end end
Version data entries
32 entries across 32 versions & 1 rubygems