debian-mirror-gitlab/spec/models/concerns/integrations/reset_secret_fields_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
500 B
Ruby
Raw Normal View History

2022-07-16 23:28:13 +05:30
# 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