diff options
author | Matija Čupić <matteeyah@gmail.com> | 2018-02-01 23:29:11 +0100 |
---|---|---|
committer | Matija Čupić <matteeyah@gmail.com> | 2018-02-01 23:29:11 +0100 |
commit | a31539847fd431e18053d0ea5a007dc38134b3f2 (patch) | |
tree | f8ee50942f485ac3729e9f6fdb62e1d09d1ab5e4 /spec | |
parent | 5126b1c5d3ba71a3ddad7e59142e46344b4c0eda (diff) | |
download | gitlab-ce-a31539847fd431e18053d0ea5a007dc38134b3f2.tar.gz |
Add specs for .auto_devops_warning_message
Diffstat (limited to 'spec')
-rw-r--r-- | spec/helpers/auto_devops_helper_spec.rb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/spec/helpers/auto_devops_helper_spec.rb b/spec/helpers/auto_devops_helper_spec.rb index 5e272af6073..1fcbad5875d 100644 --- a/spec/helpers/auto_devops_helper_spec.rb +++ b/spec/helpers/auto_devops_helper_spec.rb @@ -82,4 +82,39 @@ describe AutoDevopsHelper do it { is_expected.to eq(false) } end end + + describe '.auto_devops_warning_message' do + subject { helper.auto_devops_warning_message(project) } + + context 'when the service is missing' do + before do + allow(helper).to receive(:missing_service?).and_return(true) + end + + context 'when the domain is missing' do + before do + allow(helper).to receive(:missing_domain?).and_return(true) + end + + it { is_expected.to match(/Auto Review Apps and Auto Deploy need a domain name and a .* to work correctly./) } + end + + context 'when the domain is not missing' do + before do + allow(helper).to receive(:missing_domain?).and_return(false) + end + + it { is_expected.to match(/Auto Review Apps and Auto Deploy need a .* to work correctly./) } + end + end + + context 'when the domain is missing' do + before do + allow(helper).to receive(:missing_service?).and_return(false) + allow(helper).to receive(:missing_domain?).and_return(true) + end + + it { is_expected.to eq('Auto Review Apps and Auto Deploy need a domain name to work correctly.') } + end + end end |