summaryrefslogtreecommitdiff
path: root/spec/lib/bitbucket_server/representation/pull_request_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/bitbucket_server/representation/pull_request_spec.rb')
-rw-r--r--spec/lib/bitbucket_server/representation/pull_request_spec.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/spec/lib/bitbucket_server/representation/pull_request_spec.rb b/spec/lib/bitbucket_server/representation/pull_request_spec.rb
index a05d98f0d4a..d7b893e8081 100644
--- a/spec/lib/bitbucket_server/representation/pull_request_spec.rb
+++ b/spec/lib/bitbucket_server/representation/pull_request_spec.rb
@@ -15,6 +15,33 @@ RSpec.describe BitbucketServer::Representation::PullRequest do
it { expect(subject.author_email).to eq('joe.montana@49ers.com') }
end
+ describe '#author_username' do
+ it 'returns username' do
+ expect(subject.author_username).to eq('username')
+ end
+
+ context 'when username is absent' do
+ before do
+ sample_data['author']['user'].delete('username')
+ end
+
+ it 'returns slug' do
+ expect(subject.author_username).to eq('slug')
+ end
+ end
+
+ context 'when slug and username are absent' do
+ before do
+ sample_data['author']['user'].delete('username')
+ sample_data['author']['user'].delete('slug')
+ end
+
+ it 'returns displayName' do
+ expect(subject.author_username).to eq('displayName')
+ end
+ end
+ end
+
describe '#description' do
it { expect(subject.description).to eq('Test') }
end