Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-04-26 15:09:44 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-04-26 15:09:44 +0300
commite5e0589e097991ca671a348de81331240e85719d (patch)
tree0767e6d3388f6ebf65f5d47a3ecb0d52430fa7da /spec/views
parent0ccabeb3f62c5fbc81f52cc16fa654404bb87874 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/views')
-rw-r--r--spec/views/layouts/nav/sidebar/_project.html.haml_spec.rb52
1 files changed, 49 insertions, 3 deletions
diff --git a/spec/views/layouts/nav/sidebar/_project.html.haml_spec.rb b/spec/views/layouts/nav/sidebar/_project.html.haml_spec.rb
index bc5b3b7bfc6..166de3438c4 100644
--- a/spec/views/layouts/nav/sidebar/_project.html.haml_spec.rb
+++ b/spec/views/layouts/nav/sidebar/_project.html.haml_spec.rb
@@ -127,11 +127,57 @@ RSpec.describe 'layouts/nav/sidebar/_project' do
end
end
- describe 'issue boards' do
- it 'has board tab' do
+ describe 'Issues' do
+ it 'has a link to the issue list path' do
render
- expect(rendered).to have_css('a[title="Boards"]')
+ expect(rendered).to have_link('Issues', href: project_issues_path(project))
+ end
+
+ it 'shows pill with the number of open issues' do
+ render
+
+ expect(rendered).to have_css('span.badge.badge-pill.issue_counter')
+ end
+
+ describe 'Issue List' do
+ it 'has a link to the issue list path' do
+ render
+
+ expect(rendered).to have_link('List', href: project_issues_path(project))
+ end
+ end
+
+ describe 'Issue Boards' do
+ it 'has a link to the issue boards path' do
+ render
+
+ expect(rendered).to have_link('Boards', href: project_boards_path(project))
+ end
+ end
+
+ describe 'Labels' do
+ it 'has a link to the labels path' do
+ render
+
+ expect(rendered).to have_link('Labels', href: project_labels_path(project))
+ end
+ end
+
+ describe 'Service Desk' do
+ it 'has a link to the service desk path' do
+ render
+
+ expect(rendered).to have_link('Service Desk', href: service_desk_project_issues_path(project))
+ end
+ end
+
+ describe 'Milestones' do
+ it 'has a link to the milestones path' do
+ render
+
+ expect(rendered).to have_link('Milestones', href: project_milestones_path(project))
+ end
end
end