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

groups_controller_spec.rb « dashboard « controllers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 89a16c233d833aadf1802ecf1490455d79d477cc (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
require 'spec_helper'

describe Dashboard::GroupsController do
  let(:group) { create(:group, :public) }
  let(:user) { create(:user) }

  before do
    group.add_owner(user)
    sign_in(user)
  end

  describe 'GET #index' do
    it 'shows child groups as json' do
      get :index, format: :json

      expect(json_response.first['id']).to eq(group.id)
    end

    it 'filters groups' do
      other_group = create(:group, name: 'filter')
      other_group.add_owner(user)

      get :index, filter: 'filt', format: :json
      all_ids = json_response.map { |group_json| group_json['id'] }

      expect(all_ids).to contain_exactly(other_group.id)
    end
  end
end