require 'rails_helper' RSpec.describe Spree::PermissionSets::DashboardDisplay 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(:admin, :dashboards) } it { is_expected.to be_able_to(:home, :dashboards) } end context "when not activated" do it { is_expected.not_to be_able_to(:admin, :dashboards) } it { is_expected.not_to be_able_to(:home, :dashboards) } end end