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

require 'spec_helper'

describe Environments::AutoStopCronWorker do
  subject { worker.perform }

  let(:worker) { described_class.new }

  it 'executes Environments::AutoStopService' do
    expect_next_instance_of(Environments::AutoStopService) do |service|
      expect(service).to receive(:execute)
    end

    subject
  end
end