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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/bitbucket/connection_spec.rb')
-rw-r--r--spec/lib/bitbucket/connection_spec.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/spec/lib/bitbucket/connection_spec.rb b/spec/lib/bitbucket/connection_spec.rb
index bed44b94f44..58a05c52b9f 100644
--- a/spec/lib/bitbucket/connection_spec.rb
+++ b/spec/lib/bitbucket/connection_spec.rb
@@ -3,6 +3,8 @@
require 'spec_helper'
RSpec.describe Bitbucket::Connection do
+ let(:token) { 'token' }
+
before do
allow_next_instance_of(described_class) do |instance|
allow(instance).to receive(:provider).and_return(double(app_id: '', app_secret: ''))
@@ -15,7 +17,7 @@ RSpec.describe Bitbucket::Connection do
expect(instance).to receive(:get).and_return(double(parsed: true))
end
- connection = described_class.new({})
+ connection = described_class.new({ token: token })
connection.get('/users')
end
@@ -27,19 +29,19 @@ RSpec.describe Bitbucket::Connection do
expect(instance).to receive(:expired?).and_return(true)
end
- expect(described_class.new({}).expired?).to be_truthy
+ expect(described_class.new({ token: token }).expired?).to be_truthy
end
end
describe '#refresh!' do
it 'calls connection.refresh!' do
- response = double(token: nil, expires_at: nil, expires_in: nil, refresh_token: nil)
+ response = double(token: token, expires_at: nil, expires_in: nil, refresh_token: nil)
expect_next_instance_of(OAuth2::AccessToken) do |instance|
expect(instance).to receive(:refresh!).and_return(response)
end
- described_class.new({}).refresh!
+ described_class.new({ token: token }).refresh!
end
end
end