2022-03-02 08:16:31 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe PagesWorker, :sidekiq_inline do
|
|
|
|
let(:project) { create(:project) }
|
2022-10-11 01:57:18 +05:30
|
|
|
let(:ci_build) { create(:ci_build, project: project) }
|
2022-03-02 08:16:31 +05:30
|
|
|
|
|
|
|
it 'calls UpdatePagesService' do
|
|
|
|
expect_next_instance_of(Projects::UpdatePagesService, project, ci_build) do |service|
|
|
|
|
expect(service).to receive(:execute)
|
|
|
|
end
|
|
|
|
|
|
|
|
described_class.perform_async(:deploy, ci_build.id)
|
|
|
|
end
|
|
|
|
end
|