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

token_spec.rb « sentry_client « error_tracking « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c50ec42ed6712f28e1c04f421c7ea10dccbbf635 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ErrorTracking::SentryClient::Token, feature_category: :error_tracking do
  describe '.masked_token?' do
    subject { described_class.masked_token?(token) }

    context 'with masked token' do
      let(:token) { '*********' }

      it { is_expected.to be_truthy }
    end

    context 'without masked token' do
      let(:token) { 'token' }

      it { is_expected.to be_falsey }
    end
  end
end