summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/models/concerns/limitable_shared_examples.rb
blob: 4bcea36fd42a9c098e0ae9a13d6840d0304deb6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# frozen_string_literal: true

RSpec.shared_examples 'includes Limitable concern' do
  describe 'validations' do
    let(:plan_limits) { create(:plan_limits, :default_plan) }

    it { is_expected.to be_a(Limitable) }

    context 'without plan limits configured' do
      it 'can create new models' do
        expect { subject.save }.to change { described_class.count }
      end
    end

    context 'with plan limits configured' do
      before do
        plan_limits.update(subject.class.limit_name => 1)
      end

      it 'can create new models' do
        expect { subject.save }.to change { described_class.count }
      end

      context 'with an existing model' do
        before do
          subject.dup.save
        end

        it 'cannot create new models exceding the plan limits' do
          expect { subject.save }.not_to change { described_class.count }
          expect(subject.errors[:base]).to contain_exactly("Maximum number of #{subject.class.limit_name.humanize(capitalize: false)} (1) exceeded")
        end
      end
    end
  end
end