summaryrefslogtreecommitdiff
path: root/spec/lib
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2015-12-29 00:13:16 +0000
committerRobert Speicher <robert@gitlab.com>2015-12-29 00:13:16 +0000
commitf0ecd69be598eaaeb59f9edded378ebd9b2d68ae (patch)
tree565eeaf8ac3f7ebddafdd669b4b4b92c5a8db178 /spec/lib
parent3a227b5abb0c794e95dd9153e3616c5d81aa06f8 (diff)
parent4465e2eca0162a27142a401e6a46aa78add9177f (diff)
downloadgitlab-ce-f0ecd69be598eaaeb59f9edded378ebd9b2d68ae.tar.gz
Merge branch 'fix-spelling-mistake' into 'master'
Fix spelling mistake, thanks Connor. [ci skip] See merge request !2227
Diffstat (limited to 'spec/lib')
-rw-r--r--spec/lib/ci/gitlab_ci_yaml_processor_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb b/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
index c90133fbf03..d15100fc6d8 100644
--- a/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
+++ b/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
@@ -3,7 +3,7 @@ require 'spec_helper'
module Ci
describe GitlabCiYamlProcessor, lib: true do
let(:path) { 'path' }
-
+
describe "#builds_for_ref" do
let(:type) { 'test' }
@@ -29,7 +29,7 @@ module Ci
when: "on_success"
})
end
-
+
describe :only do
it "does not return builds if only has another branch" do
config = YAML.dump({
@@ -517,7 +517,7 @@ module Ci
end.to raise_error(GitlabCiYamlProcessor::ValidationError, "Unknown parameter: extra")
end
- it "returns errors if there is no any jobs defined" do
+ it "returns errors if there are no jobs defined" do
config = YAML.dump({ before_script: ["bundle update"] })
expect do
GitlabCiYamlProcessor.new(config, path)