summaryrefslogtreecommitdiff
path: root/spec/controllers/groups/variables_controller_spec.rb
blob: 39a36b92bb4879e9dcc5684a0d416a44839f579e (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
require 'spec_helper'

describe Groups::VariablesController do
  let(:group) { create(:group) }
  let(:user) { create(:user) }

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

  describe 'GET #show' do
    let!(:variable) { create(:ci_group_variable, group: group) }

    subject do
      get :show, group_id: group, format: :json
    end

    include_examples 'GET #show lists all variables'
  end

  describe 'PATCH #update' do
    let!(:variable) { create(:ci_group_variable, group: group) }
    let(:owner) { group }

    subject do
      patch :update,
        group_id: group,
        variables_attributes: variables_attributes,
        format: :json
    end

    include_examples 'PATCH #update updates variables'
  end
end