Skip to content
Snippets Groups Projects
Commit fb12b81b authored by Kamil Trzcinski's avatar Kamil Trzcinski
Browse files

Make rubocop happy

parent 198f4b70
No related branches found
No related tags found
1 merge request!1502Refactor Ci::Commit and Ci::Build to have all builds for same :sha on single page
Pipeline #
Loading
Loading
@@ -30,13 +30,13 @@ FactoryGirl.define do
 
factory :ci_commit_with_one_job do
after(:build) do |commit|
allow(commit).to receive(:ci_yaml_file) { YAML.dump({rspec: {script: "ls"}}) }
allow(commit).to receive(:ci_yaml_file) { YAML.dump({ rspec: { script: "ls" } }) }
end
end
 
factory :ci_commit_with_two_jobs do
after(:build) do |commit|
allow(commit).to receive(:ci_yaml_file) { YAML.dump({rspec: {script: "ls"}, spinach: {script: "ls"}}) }
allow(commit).to receive(:ci_yaml_file) { YAML.dump({ rspec: { script: "ls" }, spinach: { script: "ls" } }) }
end
end
 
Loading
Loading
Loading
Loading
@@ -71,7 +71,7 @@ module Ci
end
 
describe :ci_skip? do
let (:message) { "some message[ci skip]" }
let(:message) { "some message[ci skip]" }
 
before do
allow_any_instance_of(Ci::Commit).to receive(:git_commit_message) { message }
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