summaryrefslogtreecommitdiff
path: root/spec/workers/update_project_statistics_worker_spec.rb
blob: 1f840e363ea3686030d6e5b605cf5a51c01a71ae (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'

RSpec.describe UpdateProjectStatisticsWorker do
  let(:worker) { described_class.new }
  let(:project) { create(:project, :repository) }
  let(:statistics) { %w(repository_size) }

  describe '#perform' do
    it 'updates the project statistics' do
      expect(Projects::UpdateStatisticsService).to receive(:new)
        .with(project, nil, statistics: statistics)
        .and_call_original

      worker.perform(project.id, statistics)
    end
  end
end