Commit ef84f7bb authored by Kamil Trzciński's avatar Kamil Trzciński

Un-quarantine spec

parent 026896cc
...@@ -615,11 +615,11 @@ module Gitlab ...@@ -615,11 +615,11 @@ module Gitlab
subject { Gitlab::Ci::YamlProcessor.new(YAML.dump(config), opts) } subject { Gitlab::Ci::YamlProcessor.new(YAML.dump(config), opts) }
context "when validating a ci config file with no project context" do context "when validating a ci config file with no project context" do
context "when a single string is provided", :quarantine do context "when a single string is provided" do
let(:include_content) { "/local.gitlab-ci.yml" } let(:include_content) { "/local.gitlab-ci.yml" }
it "does not return any error" do it "returns a validation error" do
expect { subject }.not_to raise_error expect { subject }.to raise_error /does not have project/
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment