Sha256: 1fdd129baa6a8053dedd012e4ebecfe483b0ecd80382f1974df1785e0acad431
Contents?: true
Size: 725 Bytes
Versions: 48
Compression:
Stored size: 725 Bytes
Contents
# frozen_string_literal: true require 'rails_helper' RSpec.describe Spree::PermissionSets::StockDisplay 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::StockItem) } it { is_expected.to be_able_to(:admin, 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(:display, Spree::StockItem) } it { is_expected.not_to be_able_to(:admin, Spree::StockItem) } it { is_expected.not_to be_able_to(:display, Spree::StockLocation) } end end
Version data entries
48 entries across 48 versions & 2 rubygems