Skip to content
Snippets Groups Projects
Commit 91c07d16 authored by Yorick Peterse's avatar Yorick Peterse Committed by James Edwards-Jones
Browse files

Fixed Rubocop deprecation warnings

parent 12d44272
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -25,7 +25,7 @@ module Projects
 
# Check if we did extract public directory
archive_public_path = File.join(archive_path, 'public')
raise 'pages miss the public folder' unless Dir.exists?(archive_public_path)
raise 'pages miss the public folder' unless Dir.exist?(archive_public_path)
raise 'pages are outdated' unless latest?
 
deploy_page!(archive_public_path)
Loading
Loading
Loading
Loading
@@ -5,7 +5,7 @@ describe Projects::UpdatePagesService do
let(:pipeline) { create :ci_pipeline, project: project, sha: project.commit('HEAD').sha }
let(:build) { create :ci_build, pipeline: pipeline, ref: 'HEAD' }
let(:invalid_file) { fixture_file_upload(Rails.root + 'spec/fixtures/dk.png') }
subject { described_class.new(project, build) }
 
before do
Loading
Loading
@@ -18,7 +18,7 @@ describe Projects::UpdatePagesService do
let(:empty_file) { fixture_file_upload(Rails.root + "spec/fixtures/pages_empty.#{format}") }
let(:metadata) do
filename = Rails.root + "spec/fixtures/pages.#{format}.meta"
fixture_file_upload(filename) if File.exists?(filename)
fixture_file_upload(filename) if File.exist?(filename)
end
 
before do
Loading
Loading
@@ -73,7 +73,7 @@ describe Projects::UpdatePagesService do
build.update_attributes(artifacts_file: invalid_file)
expect(execute).not_to eq(:success)
end
def execute
subject.execute[:status]
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment