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

distributions_finder_spec.rb « debian « packages « finders « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f141b13e3940208037db7d05bbb9db2e7fff494e (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
28
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Packages::Debian::DistributionsFinder do
  it_behaves_like 'Debian Distributions Finder', :debian_project_distribution, true
  it_behaves_like 'Debian Distributions Finder', :debian_group_distribution, false

  context 'with nil container' do
    let(:service) { described_class.new(nil) }

    subject { service.execute.to_a }

    it 'raises error' do
      expect { subject }.to raise_error ArgumentError, "Unexpected container type of 'NilClass'"
    end
  end

  context 'with unexpected container type' do
    let(:service) { described_class.new(:invalid) }

    subject { service.execute.to_a }

    it 'raises error' do
      expect { subject }.to raise_error ArgumentError, "Unexpected container type of 'Symbol'"
    end
  end
end