summaryrefslogtreecommitdiff
path: root/spec/lib
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-04-17 08:59:57 -0400
committerKamil Trzcinski <ayufan@ayufan.eu>2016-04-17 08:59:57 -0400
commitcc57d61023c6dd5ef274bac5d4e6cde1cae97d2c (patch)
treedb842305c52cbbef2b63bf225a80f80339ce44a8 /spec/lib
parentb340b59743e8cd47fc1f4fa2020b400d82bfd86e (diff)
downloadgitlab-ce-cc57d61023c6dd5ef274bac5d4e6cde1cae97d2c.tar.gz
Rename finally_script to after_script
Diffstat (limited to 'spec/lib')
-rw-r--r--spec/lib/ci/gitlab_ci_yaml_processor_spec.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb b/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
index 8e373ae55b0..2421d6eee8f 100644
--- a/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
+++ b/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb
@@ -293,17 +293,17 @@ module Ci
subject { config_processor.builds_for_stage_and_ref("test", "master").first }
- describe "finally_script" do
+ describe "after_script" do
context "in global context" do
let(:config) {
{
- finally_script: ["finally_script"],
+ after_script: ["after_script"],
test: { script: ["script"] }
}
}
- it "return finally_script in options" do
- expect(subject[:options][:finally_script]).to eq(["finally_script"])
+ it "return after_script in options" do
+ expect(subject[:options][:after_script]).to eq(["after_script"])
end
end
end
@@ -629,11 +629,11 @@ EOT
end.to raise_error(GitlabCiYamlProcessor::ValidationError, "before_script should be an array of strings")
end
- it "returns errors if finally_script parameter is invalid" do
- config = YAML.dump({ finally_script: "bundle update", rspec: { script: "test" } })
+ it "returns errors if after_script parameter is invalid" do
+ config = YAML.dump({ after_script: "bundle update", rspec: { script: "test" } })
expect do
GitlabCiYamlProcessor.new(config, path)
- end.to raise_error(GitlabCiYamlProcessor::ValidationError, "finally_script should be an array of strings")
+ end.to raise_error(GitlabCiYamlProcessor::ValidationError, "after_script should be an array of strings")
end
it "returns errors if image parameter is invalid" do