summaryrefslogtreecommitdiff
path: root/spec/migrations/schedule_fix_incorrect_max_seats_used_spec.rb
blob: 194a1d39ad13363966f3825c88fd67af4ec62350 (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
# frozen_string_literal: true

require 'spec_helper'
require_migration!

RSpec.describe ScheduleFixIncorrectMaxSeatsUsed, :migration, feature_category: :purchase do
  let(:migration) { described_class.new }

  describe '#up' do
    it 'schedules a job on Gitlab.com' do
      allow(Gitlab).to receive(:com?).and_return(true)

      expect(migration).to receive(:migrate_in).with(1.hour, 'FixIncorrectMaxSeatsUsed')

      migration.up
    end

    it 'does not schedule any jobs when not Gitlab.com' do
      allow(Gitlab::CurrentSettings).to receive(:com?).and_return(false)

      expect(migration).not_to receive(:migrate_in)

      migration.up
    end
  end
end