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

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

require 'spec_helper'

RSpec.describe BaseContainerService, feature_category: :container_registry do
  let(:project) { Project.new }
  let(:user) { User.new }

  describe '#initialize' do
    it 'accepts container and current_user' do
      subject = described_class.new(container: project, current_user: user)

      expect(subject.container).to eq(project)
      expect(subject.current_user).to eq(user)
    end

    it 'treats current_user as optional' do
      subject = described_class.new(container: project)

      expect(subject.current_user).to be_nil
    end
  end
end