2017-08-17 22:00:37 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
describe Projects::UpdatePagesConfigurationService do
|
|
|
|
let(:project) { create(:project) }
|
2017-08-17 22:00:37 +05:30
|
|
|
subject { described_class.new(project) }
|
|
|
|
|
|
|
|
describe "#update" do
|
|
|
|
let(:file) { Tempfile.new('pages-test') }
|
|
|
|
|
|
|
|
after do
|
|
|
|
file.close
|
|
|
|
file.unlink
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates the .update file' do
|
|
|
|
# Access this reference to ensure scoping works
|
|
|
|
Projects::Settings # rubocop:disable Lint/Void
|
|
|
|
expect(subject).to receive(:pages_config_file).and_return(file.path)
|
|
|
|
expect(subject).to receive(:reload_daemon).and_call_original
|
|
|
|
|
|
|
|
expect(subject.execute).to eq({ status: :success })
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|