summaryrefslogtreecommitdiff
path: root/spec/workers/project_update_repository_storage_worker_spec.rb
blob: 4cc44281a69485b98d52e654d407b6f1718aaf8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require 'spec_helper'

describe ProjectUpdateRepositoryStorageWorker do
  let(:project) { create(:project, :repository) }

  subject { described_class.new }

  describe "#perform" do
    it "calls the update repository storage service" do
      expect_next_instance_of(Projects::UpdateRepositoryStorageService) do |instance|
        expect(instance).to receive(:execute).with('new_storage')
      end

      subject.perform(project.id, 'new_storage')
    end
  end
end