debian-mirror-gitlab/spec/features/projects/branches/user_views_branches_spec.rb

39 lines
892 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-10-15 14:42:47 +05:30
require "spec_helper"
2020-06-23 00:09:42 +05:30
RSpec.describe "User views branches" do
2020-04-08 14:13:33 +05:30
let_it_be(:project) { create(:project, :repository) }
let_it_be(:user) { project.owner }
2018-10-15 14:42:47 +05:30
before do
sign_in(user)
end
context "all branches" do
before do
visit(project_branches_path(project))
end
it "shows branches" do
expect(page).to have_content("Branches").and have_content("master")
2019-07-07 11:18:12 +05:30
expect(page.all(".graph-side")).to all( have_content(/\d+/) )
2018-10-15 14:42:47 +05:30
end
end
context "protected branches" do
2020-04-08 14:13:33 +05:30
let_it_be(:protected_branch) { create(:protected_branch, project: project) }
2018-10-15 14:42:47 +05:30
before do
visit(project_protected_branches_path(project))
end
it "shows branches" do
page.within(".protected-branches-list") do
expect(page).to have_content(protected_branch.name).and have_no_content("master")
end
end
end
end