2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
2018-12-13 14:40:22 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe AppVersionRestartJob, type: :job do
|
|
|
|
|
|
|
|
let(:cmd) { '/path/to/restart_script.sh' }
|
|
|
|
|
|
|
|
it 'executes app version restart job' do
|
|
|
|
expect(::Kernel).to receive(:system).with(cmd)
|
|
|
|
described_class.perform_now(cmd)
|
|
|
|
end
|
|
|
|
end
|