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