diff options
author | Bob Van Landuyt <bob@vanlanduyt.co> | 2018-04-10 19:49:26 +0200 |
---|---|---|
committer | Bob Van Landuyt <bob@vanlanduyt.co> | 2018-04-11 10:51:43 +0200 |
commit | c39e3f22ce12a302e294deb3523414e4a684b6fb (patch) | |
tree | 2a0e8d4bb5c2b81ef6c8bb82758f05c52b8642fc /spec/features/projects/issues | |
parent | 04c7d0d55500e6f118bd17153f3af11e83fce826 (diff) | |
download | gitlab-ce-c39e3f22ce12a302e294deb3523414e4a684b6fb.tar.gz |
Show `New Issue` link for projects
When a user is not logged in, we want to show the `New Issue` link so
he gets directed to the login flow first.
When a project is archived, we never want to show the link.
Diffstat (limited to 'spec/features/projects/issues')
-rw-r--r-- | spec/features/projects/issues/user_views_issue_spec.rb | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/spec/features/projects/issues/user_views_issue_spec.rb b/spec/features/projects/issues/user_views_issue_spec.rb index f7f2cde3d64..d17ce636f3b 100644 --- a/spec/features/projects/issues/user_views_issue_spec.rb +++ b/spec/features/projects/issues/user_views_issue_spec.rb @@ -6,11 +6,27 @@ describe "User views issue" do set(:issue) { create(:issue, project: project, description: "# Description header", author: user) } before do - project.add_guest(user) + project.add_developer(user) sign_in(user) visit(project_issue_path(project, issue)) end it { expect(page).to have_header_with_correct_id_and_link(1, "Description header", "description-header") } + + it { expect(page).to have_link('New issue') } + + it { expect(page).to have_button('Create merge request') } + + it { expect(page).to have_link('Close issue') } + + context 'when the project is archived' do + let(:project) { create(:project, :public, archived: true) } + + it { expect(page).not_to have_link('New issue') } + + it { expect(page).not_to have_button('Create merge request') } + + it { expect(page).not_to have_link('Close issue') } + end end |