From 6e4e1050d9dba2b7b2523fdd1768823ab85feef4 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 20 Aug 2020 18:42:06 +0000 Subject: Add latest changes from gitlab-org/gitlab@13-3-stable-ee --- spec/lib/gitlab/audit/unauthenticated_author_spec.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 spec/lib/gitlab/audit/unauthenticated_author_spec.rb (limited to 'spec/lib/gitlab/audit/unauthenticated_author_spec.rb') diff --git a/spec/lib/gitlab/audit/unauthenticated_author_spec.rb b/spec/lib/gitlab/audit/unauthenticated_author_spec.rb new file mode 100644 index 00000000000..4e5c477fc2a --- /dev/null +++ b/spec/lib/gitlab/audit/unauthenticated_author_spec.rb @@ -0,0 +1,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 -- cgit v1.2.1