Welcome to mirror list, hosted at ThFree Co, Russian Federation.

issue_search_spec.rb « presenters « slash_commands « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1c011133c4e7d7caf01447624685209671c4d7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::SlashCommands::Presenters::IssueSearch do
  let(:project) { create(:project) }
  let(:message) { subject[:text] }

  before do
    create_list(:issue, 2, project: project)
  end

  subject { described_class.new(project.issues).present }

  it 'formats the message correct' do
    is_expected.to have_key(:text)
    is_expected.to have_key(:status)
    is_expected.to have_key(:response_type)
    is_expected.to have_key(:attachments)
  end

  it 'shows a list of results' do
    expect(subject[:response_type]).to be(:ephemeral)

    expect(message).to start_with("Here are the 2 issues I found")
  end
end