Sha256: ae3f472d2a157600ab4dbf4c3c30c02dfa66812d74676aece0cdabf259515ce6
Contents?: true
Size: 647 Bytes
Versions: 11
Compression:
Stored size: 647 Bytes
Contents
require 'rails_helper' RSpec.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
11 entries across 11 versions & 1 rubygems