summaryrefslogtreecommitdiff
path: root/spec/features/project_variables_spec.rb
blob: a93df3696d2cd9469d2e65a83b6fd07b7e6d0dfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'spec_helper'

describe 'Project variables', :js do
  let(:user)     { create(:user) }
  let(:project)  { create(:project) }
  let(:variable) { create(:ci_variable, key: 'test_key', value: 'test value') }
  let(:page_path) { project_settings_ci_cd_path(project) }

  before do
    sign_in(user)
    project.add_maintainer(user)
    project.variables << variable

    visit page_path
  end

  it_behaves_like 'variable list'
end