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