Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/views/registrations/welcome/show.html.haml_spec.rb')
-rw-r--r--spec/views/registrations/welcome/show.html.haml_spec.rb24
1 files changed, 1 insertions, 23 deletions
diff --git a/spec/views/registrations/welcome/show.html.haml_spec.rb b/spec/views/registrations/welcome/show.html.haml_spec.rb
index ecdef7918de..d9c5d348e15 100644
--- a/spec/views/registrations/welcome/show.html.haml_spec.rb
+++ b/spec/views/registrations/welcome/show.html.haml_spec.rb
@@ -3,8 +3,6 @@
require 'spec_helper'
RSpec.describe 'registrations/welcome/show' do
- let(:is_gitlab_com) { false }
-
let_it_be(:user) { create(:user) }
before do
@@ -13,7 +11,6 @@ RSpec.describe 'registrations/welcome/show' do
allow(view).to receive(:in_trial_flow?).and_return(false)
allow(view).to receive(:user_has_memberships?).and_return(false)
allow(view).to receive(:in_oauth_flow?).and_return(false)
- allow(Gitlab).to receive(:com?).and_return(is_gitlab_com)
render
end
@@ -22,24 +19,5 @@ RSpec.describe 'registrations/welcome/show' do
it { is_expected.not_to have_selector('label[for="user_setup_for_company"]') }
it { is_expected.to have_button('Get started!') }
- it { is_expected.to have_selector('input[name="user[email_opted_in]"]') }
-
- describe 'email opt in' do
- context 'when on gitlab.com' do
- let(:is_gitlab_com) { true }
-
- it 'hides the email-opt in by default' do
- expect(subject).to have_css('.js-email-opt-in.hidden')
- end
- end
-
- context 'when not on gitlab.com' do
- let(:is_gitlab_com) { false }
-
- it 'hides the email-opt in by default' do
- expect(subject).not_to have_css('.js-email-opt-in.hidden')
- expect(subject).to have_css('.js-email-opt-in')
- end
- end
- end
+ it { is_expected.not_to have_selector('input[name="user[email_opted_in]"]') }
end