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

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

require 'spec_helper'

RSpec.describe ApplicationsFinder do
  let(:application1) { create(:application, name: 'some_application', owner: nil, redirect_uri: 'http://some_application.url', scopes: '') }
  let(:application2) { create(:application, name: 'another_application', owner: nil, redirect_uri: 'http://other_application.url', scopes: '') }

  describe '#execute' do
    it 'returns an array of applications' do
      found = described_class.new.execute

      expect(found).to match_array([application1, application2])
    end
    it 'returns the application by id' do
      params = { id: application1.id }
      found = described_class.new(params).execute

      expect(found).to match(application1)
    end
  end
end