summaryrefslogtreecommitdiff
path: root/spec/views/shared/_label_row.html.haml.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/views/shared/_label_row.html.haml.rb')
-rw-r--r--spec/views/shared/_label_row.html.haml.rb32
1 files changed, 0 insertions, 32 deletions
diff --git a/spec/views/shared/_label_row.html.haml.rb b/spec/views/shared/_label_row.html.haml.rb
deleted file mode 100644
index a58d5efc1e3..00000000000
--- a/spec/views/shared/_label_row.html.haml.rb
+++ /dev/null
@@ -1,32 +0,0 @@
-require 'spec_helper'
-
-describe 'shared/_label_row.html.haml' do
- label_types = {
- 'project label': :label,
- 'group label': :group_label
- }
-
- label_types.each do |label_type, label_factory|
- let!(:label) { create(label_factory) }
-
- context "for a #{label_type}" do
- it 'has a non-linked label title' do
- render 'shared/label_row', label: label
-
- expect(rendered).not_to have_css('a', text: label.title)
- end
-
- it "has Issues link for #{label_type}" do
- render 'shared/label_row', label: label
-
- expect(rendered).to have_css('a', text: 'Issues')
- end
-
- it "has Merge request link for #{label_type}" do
- render 'shared/label_row', label: label
-
- expect(rendered).to have_css('a', text: 'Merge requests')
- end
- end
- end
-end