提交 38759832 编写于 作者: S Shinya Maeda

Impprove spec by godfat suggestions

上级 4b0e31ba
......@@ -23,11 +23,11 @@ FactoryGirl.define do
end
trait :protected do
access_level Ci::Runner.access_levels['protected_']
access_level 'protected_'
end
trait :unprotected do
access_level Ci::Runner.access_levels['unprotected']
access_level 'unprotected'
end
end
end
......@@ -26,7 +26,16 @@ describe Gitlab::Ci::Stage::Seed do
expect(subject.builds).to all(include(project: pipeline.project))
expect(subject.builds)
.to all(include(trigger_request: pipeline.trigger_requests.first))
expect(subject.builds).to all(include(protected: true))
end
context 'when a ref is protected' do
before do
allow_any_instance_of(Project).to receive(:protected_for?).and_return(true)
end
it 'returns unprotected builds' do
expect(subject.builds).to all(include(protected: true))
end
end
context 'when a ref is unprotected' do
......
......@@ -192,7 +192,7 @@ describe API::Runners do
tag_list: ['ruby2.1', 'pgsql', 'mysql'],
run_untagged: 'false',
locked: 'true',
access_level: 1)
access_level: Ci::Runner.access_levels['protected_'])
shared_runner.reload
expect(response).to have_http_status(200)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册