summaryrefslogtreecommitdiff
path: root/spec/helpers/jira_connect_helper_spec.rb
blob: a99072527c892df3c742e252e9323dc5460d46e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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