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

unauthenticated_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: 4e5c477fc2aaa4940647d7a3f066fbb10d487a9b (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::UnauthenticatedAuthor do
  describe '#initialize' do
    it 'sets correct attributes' do
      expect(described_class.new(name: 'Peppa Pig'))
        .to have_attributes(id: -1, name: 'Peppa Pig')
    end

    it 'sets default name when it is not provided' do
      expect(described_class.new)
        .to have_attributes(id: -1, name: 'An unauthenticated user')
    end
  end
end