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

deploy_key_author_spec.rb « audit « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 72444f77c91afa1822cb08b035dc7b15d46b8023 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Audit::DeployKeyAuthor do
  describe '#initialize' do
    it 'sets correct attributes' do
      expect(described_class.new(name: 'Lorem deploy key'))
        .to have_attributes(id: -3, name: 'Lorem deploy key')
    end

    it 'sets default name when it is not provided' do
      expect(described_class.new)
        .to have_attributes(id: -3, name: 'Deploy Key')
    end
  end
end