summaryrefslogtreecommitdiff
path: root/spec/features/user_sees_marketing_header_spec.rb
blob: eae964cec02c0ce174b4e4bd985550a76e073784 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true

require "spec_helper"

RSpec.describe 'User sees experimental lmarketing header' do
  let_it_be(:project) { create(:project, :public) }

  context 'when not logged in' do
    it 'shows marketing header links', :aggregate_failures do
      visit project_path(project)

      expect(page).to have_text "About GitLab"
      expect(page).to have_text "Pricing"
      expect(page).to have_text "Talk to an expert"
      expect(page).to have_text "Sign up now"
      expect(page).to have_text "Login"
    end
  end

  context 'when logged in' do
    it 'does not show marketing header links', :aggregate_failures do
      sign_in(create(:user))

      visit project_path(project)

      expect(page).not_to have_text "About GitLab"
      expect(page).not_to have_text "Pricing"
      expect(page).not_to have_text "Talk to an expert"
    end
  end
end