summaryrefslogtreecommitdiff
path: root/spec/models/concerns/integrations/reset_secret_fields_spec.rb
blob: a372550c70fab5188a99c916841db88cb795e047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Integrations::ResetSecretFields do
  let(:described_class) do
    Class.new(Integration) do
      field :username, type: 'text'
      field :url, type: 'text', exposes_secrets: true
      field :api_url, type: 'text', exposes_secrets: true
      field :password, type: 'password'
      field :token, type: 'password'
    end
  end

  let(:integration) { described_class.new }

  it_behaves_like Integrations::ResetSecretFields
end