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

_home_panel.html.haml_spec.rb « groups « views « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e76862cdaeac65a99473b084f325a9530646c8e6 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'groups/_home_panel' do
  let(:group) { create(:group) }

  before do
    assign(:group, group)
  end

  it 'renders the group ID' do
    render

    expect(rendered).to have_content("Group ID: #{group.id}")
  end

  context 'admin area link' do
    it 'renders admin area link for admin' do
      allow(view).to receive(:current_user).and_return(create(:admin))

      render

      expect(rendered).to have_link(href: admin_group_path(group))
    end

    it 'does not render admin area link for non-admin' do
      allow(view).to receive(:current_user).and_return(create(:user))

      render

      expect(rendered).not_to have_link(href: admin_group_path(group))
    end

    it 'does not render admin area link for anonymous' do
      allow(view).to receive(:current_user).and_return(nil)

      render

      expect(rendered).not_to have_link(href: admin_group_path(group))
    end
  end
end