提交 f610aa7c 编写于 作者: G GitLab Bot

Add latest changes from gitlab-org/gitlab@master

上级 12577c6e
......@@ -122,5 +122,4 @@
.only-ee:
only:
variables:
- $CI_PROJECT_NAME == "gitlab-ee"
- $CI_PROJECT_NAME == "gitlab" # New name of gitlab-ee after the single codebase migration
- $CI_PROJECT_NAME == "gitlab"
......@@ -35,7 +35,7 @@ module Gitlab
end
def ee?
ENV['CI_PROJECT_NAME'] == 'gitlab-ee' || File.exist?('../../CHANGELOG-EE.md')
ENV['CI_PROJECT_NAME'] == 'gitlab' || File.exist?('../../CHANGELOG-EE.md')
end
def gitlab_helper
......@@ -52,7 +52,7 @@ module Gitlab
end
def project_name
ee? ? 'gitlab-ee' : 'gitlab-ce'
ee? ? 'gitlab' : 'gitlab-foss'
end
def markdown_list(items)
......
......@@ -86,8 +86,8 @@ describe Gitlab::Danger::Helper do
describe '#ee?' do
subject { helper.ee? }
it 'returns true if CI_PROJECT_NAME if set to gitlab-ee' do
stub_env('CI_PROJECT_NAME', 'gitlab-ee')
it 'returns true if CI_PROJECT_NAME if set to gitlab' do
stub_env('CI_PROJECT_NAME', 'gitlab')
expect(File).not_to receive(:exist?)
is_expected.to be_truthy
......@@ -118,16 +118,16 @@ describe Gitlab::Danger::Helper do
describe '#project_name' do
subject { helper.project_name }
it 'returns gitlab-ee if ee? returns true' do
it 'returns gitlab if ee? returns true' do
expect(helper).to receive(:ee?) { true }
is_expected.to eq('gitlab-ee')
is_expected.to eq('gitlab')
end
it 'returns gitlab-ce if ee? returns false' do
expect(helper).to receive(:ee?) { false }
is_expected.to eq('gitlab-ce')
is_expected.to eq('gitlab-foss')
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册