diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2022-02-18 09:45:46 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2022-02-18 09:45:46 +0000 |
commit | a7b3560714b4d9cc4ab32dffcd1f74a284b93580 (patch) | |
tree | 7452bd5c3545c2fa67a28aa013835fb4fa071baf /spec/lib/bitbucket_server | |
parent | ee9173579ae56a3dbfe5afe9f9410c65bb327ca7 (diff) | |
download | gitlab-ce-a7b3560714b4d9cc4ab32dffcd1f74a284b93580.tar.gz |
Add latest changes from gitlab-org/gitlab@14-8-stable-eev14.8.0-rc42
Diffstat (limited to 'spec/lib/bitbucket_server')
-rw-r--r-- | spec/lib/bitbucket_server/representation/repo_spec.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/spec/lib/bitbucket_server/representation/repo_spec.rb b/spec/lib/bitbucket_server/representation/repo_spec.rb index 7a773f47ca5..5de4360bbd0 100644 --- a/spec/lib/bitbucket_server/representation/repo_spec.rb +++ b/spec/lib/bitbucket_server/representation/repo_spec.rb @@ -9,6 +9,7 @@ RSpec.describe BitbucketServer::Representation::Repo do "slug": "rouge", "id": 1, "name": "rouge", + "description": "Rogue Repo", "scmId": "git", "state": "AVAILABLE", "statusMessage": "Available", @@ -17,7 +18,7 @@ RSpec.describe BitbucketServer::Representation::Repo do "key": "TEST", "id": 1, "name": "test", - "description": "Test", + "description": "Test Project", "public": false, "type": "NORMAL", "links": { @@ -73,7 +74,7 @@ RSpec.describe BitbucketServer::Representation::Repo do end describe '#description' do - it { expect(subject.description).to eq('Test') } + it { expect(subject.description).to eq('Rogue Repo') } end describe '#full_name' do |