debian-mirror-gitlab/spec/helpers/jira_connect_helper_spec.rb

16 lines
301 B
Ruby
Raw Normal View History

2021-03-08 18:12:59 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe JiraConnectHelper do
describe '#jira_connect_app_data' do
subject { helper.jira_connect_app_data }
it 'includes Jira Connect app attributes' do
is_expected.to include(
:groups_path
)
end
end
end