gitlab-org--gitlab-foss/spec/features/ci/variables_spec.rb

29 lines
656 B
Ruby
Raw Normal View History

2015-08-25 21:42:46 -04:00
require 'spec_helper'
describe "Variables" do
2015-09-15 15:23:45 -04:00
let(:user) { create(:user) }
2015-08-25 21:42:46 -04:00
before do
2015-09-15 15:23:45 -04:00
login_as(user)
2015-08-25 21:42:46 -04:00
end
describe "specific runners" do
before do
2015-09-15 09:42:02 -04:00
@project = FactoryGirl.create :ci_project
2015-09-15 15:23:45 -04:00
@project.gl_project.team << [user, :master]
2015-08-25 21:42:46 -04:00
end
it "creates variable", js: true do
2015-09-15 09:42:02 -04:00
visit ci_project_variables_path(@project)
2015-08-25 21:42:46 -04:00
click_on "Add a variable"
fill_in "Key", with: "SECRET_KEY"
fill_in "Value", with: "SECRET_VALUE"
click_on "Save changes"
2015-09-10 10:55:09 -04:00
expect(page).to have_content("Variables were successfully updated.")
expect(@project.variables.count).to eq(1)
2015-08-25 21:42:46 -04:00
end
end
end