提交 175a3dfd 编写于 作者: G Grzegorz Bizon

Fix GitLab QA release inflector strategy

上级 8a418f3e
......@@ -19,7 +19,7 @@ module QA
end
begin
require "#{version.downcase}/strategy"
require "qa/#{version.downcase}/strategy"
rescue LoadError
# noop
end
......
......@@ -5,6 +5,7 @@ describe QA::Runtime::Release do
before do
stub_const('QA::CE::Strategy', strategy)
stub_const('QA::EE::Strategy', strategy)
end
describe '#has_strategy?' do
......@@ -32,6 +33,11 @@ describe QA::Runtime::Release do
context 'when release version does not have extension strategy' do
subject { described_class.new('CE') }
before do
hide_const('QA::CE::Strategy')
hide_const('QA::EE::Strategy')
end
describe '#has_strategy?' do
it 'returns false' do
expect(subject.has_strategy?).to be false
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册