diff options
| author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-07-16 18:39:58 +0200 |
|---|---|---|
| committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-07-18 14:44:21 +0200 |
| commit | 7d0fe1f04ed285e7e5cf825a305114b3e981c2f8 (patch) | |
| tree | 7ad00009bb144bbe76534310175734e6885be619 /spec/lib/ci | |
| parent | 4e898b9b5e1a782d226212ba6227a8ddcb5177ae (diff) | |
| download | gitlab-ce-7d0fe1f04ed285e7e5cf825a305114b3e981c2f8.tar.gz | |
Add implementation of manual actions
Diffstat (limited to 'spec/lib/ci')
| -rw-r--r-- | spec/lib/ci/gitlab_ci_yaml_processor_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb b/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb index ad6587b4c25..d20fd4ab7dd 100644 --- a/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb +++ b/spec/lib/ci/gitlab_ci_yaml_processor_spec.rb @@ -1141,7 +1141,7 @@ EOT config = YAML.dump({ rspec: { script: "test", when: 1 } }) expect do GitlabCiYamlProcessor.new(config, path) - end.to raise_error(GitlabCiYamlProcessor::ValidationError, "rspec job: when parameter should be on_success, on_failure or always") + end.to raise_error(GitlabCiYamlProcessor::ValidationError, "rspec job: when parameter should be on_success, on_failure, always or manual") end it "returns errors if job artifacts:name is not an a string" do |
