debian-mirror-gitlab/spec/features/project_variables_spec.rb

19 lines
450 B
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
require 'spec_helper'
describe 'Project variables', :js do
let(:user) { create(:user) }
let(:project) { create(:project) }
2019-07-07 11:18:12 +05:30
let(:variable) { create(:ci_variable, key: 'test_key', value: 'test_value', masked: true) }
2018-03-17 18:26:18 +05:30
let(:page_path) { project_settings_ci_cd_path(project) }
before do
sign_in(user)
2018-11-18 11:00:15 +05:30
project.add_maintainer(user)
2018-03-17 18:26:18 +05:30
project.variables << variable
visit page_path
end
it_behaves_like 'variable list'
end