Sha256: 4b4f7e151a3d290b620626763319d93c29308834aa4a8533506a890927284499
Contents?: true
Size: 565 Bytes
Versions: 11
Compression:
Stored size: 565 Bytes
Contents
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
11 entries across 11 versions & 1 rubygems