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

organization.html.haml_spec.rb « layouts « views « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 72a4abd288ab5ff7d4ad37771080bdb24741b183 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'layouts/organization', feature_category: :cell do
  let_it_be(:organization) { build_stubbed(:organization) }
  let_it_be(:current_user) { build_stubbed(:user, :admin) }

  before do
    allow(view).to receive(:current_user).and_return(current_user)
    allow(view).to receive(:current_user_mode).and_return(Gitlab::Auth::CurrentUserMode.new(current_user))
    allow(view).to receive(:users_path).and_return('/root')
  end

  subject do
    render

    rendered
  end

  describe 'navigation' do
    context 'when action is #index' do
      before do
        allow(view).to receive(:params).and_return({ action: 'index' })
      end

      it 'renders your_work navigation' do
        subject

        expect(view.instance_variable_get(:@nav)).to eq('your_work')
      end
    end

    context 'when action is #new' do
      before do
        allow(view).to receive(:params).and_return({ action: 'new' })
      end

      it 'renders your_work navigation' do
        subject

        expect(view.instance_variable_get(:@nav)).to eq('your_work')
      end
    end

    context 'when action is #show' do
      before do
        allow(view).to receive(:params).and_return({ action: 'show' })
        view.instance_variable_set(:@organization, organization)
      end

      it 'renders organization navigation' do
        subject

        expect(view.instance_variable_get(:@nav)).to eq('organization')
      end
    end
  end
end