2019-09-04 21:01:54 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
RSpec.describe Integrations::JiraTrackerData do
|
2022-07-23 23:45:48 +05:30
|
|
|
it_behaves_like Integrations::BaseDataFields
|
2020-10-24 23:57:45 +05:30
|
|
|
|
|
|
|
describe 'deployment_type' do
|
2022-07-23 23:45:48 +05:30
|
|
|
specify do
|
|
|
|
is_expected.to define_enum_for(:deployment_type).with_values([:unknown, :server, :cloud]).with_prefix(:deployment)
|
|
|
|
end
|
2020-10-24 23:57:45 +05:30
|
|
|
end
|
2021-03-11 19:13:27 +05:30
|
|
|
|
|
|
|
describe 'encrypted attributes' do
|
2023-04-23 21:23:45 +05:30
|
|
|
subject { described_class.attr_encrypted_attributes.keys }
|
2021-03-11 19:13:27 +05:30
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
it { is_expected.to contain_exactly(:api_url, :password, :url, :username) }
|
2021-03-11 19:13:27 +05:30
|
|
|
end
|
2019-09-04 21:01:54 +05:30
|
|
|
end
|