summaryrefslogtreecommitdiff
path: root/qa/spec/runtime/api/request_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/spec/runtime/api/request_spec.rb')
-rw-r--r--qa/spec/runtime/api/request_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/qa/spec/runtime/api/request_spec.rb b/qa/spec/runtime/api/request_spec.rb
index a20f1cf8559..8354eff6234 100644
--- a/qa/spec/runtime/api/request_spec.rb
+++ b/qa/spec/runtime/api/request_spec.rb
@@ -22,6 +22,12 @@ describe QA::Runtime::API::Request do
end
end
+ describe '#mask_url' do
+ it 'returns the full API request url with the token masked' do
+ expect(request.mask_url).to eq 'http://example.com/api/v4/users?private_token=[****]'
+ end
+ end
+
describe '#request_path' do
it 'prepends the api path' do
expect(request.request_path('/users')).to eq '/api/v4/users'