debian-mirror-gitlab/spec/features/groups/labels/user_sees_links_to_issuables_spec.rb

20 lines
455 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'spec_helper'
2018-11-08 19:23:39 +05:30
describe 'Groups > Labels > User sees links to issuables' do
2018-03-17 18:26:18 +05:30
set(:group) { create(:group, :public) }
before do
create(:group_label, group: group, title: 'bug')
visit group_labels_path(group)
end
2018-11-08 19:23:39 +05:30
it 'shows links to MRs and issues' do
2019-10-12 21:52:04 +05:30
page.within('.labels-container') do
expect(page).to have_link('Merge requests')
expect(page).to have_link('Issues')
end
2018-03-17 18:26:18 +05:30
end
end