23 lines
732 B
Ruby
23 lines
732 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe 'registrations/welcome/show' do
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
before do
|
|
allow(view).to receive(:current_user).and_return(user)
|
|
allow(view).to receive(:in_subscription_flow?).and_return(false)
|
|
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)
|
|
|
|
render
|
|
end
|
|
|
|
subject { rendered }
|
|
|
|
it { is_expected.not_to have_selector('label[for="user_setup_for_company"]') }
|
|
it { is_expected.to have_button('Get started!') }
|
|
it { is_expected.not_to have_selector('input[name="user[email_opted_in]"]') }
|
|
end
|