debian-mirror-gitlab/spec/views/shared/_label_row.html.haml.rb

33 lines
812 B
Ruby
Raw Normal View History

2019-07-31 22:56:46 +05:30
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