2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
require "spec_helper"
|
|
|
|
|
|
|
|
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
|