gitlab-org--gitlab-foss/spec/features/groups/labels/user_sees_links_to_issuable...

18 lines
418 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'spec_helper'
2018-07-05 06:32:05 +00:00
describe 'Groups > Labels > User sees links to issuables' do
set(:group) { create(:group, :public) }
before do
create(:group_label, group: group, title: 'bug')
visit group_labels_path(group)
end
2018-07-05 06:32:05 +00:00
it 'shows links to MRs and issues' do
expect(page).to have_link('view merge requests')
expect(page).to have_link('view open issues')
end
end