20 lines
512 B
Ruby
20 lines
512 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe Integrations::ResetSecretFields, feature_category: :integrations 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 described_class
|
|
end
|