debian-mirror-gitlab/spec/models/integrations/jira_tracker_data_spec.rb

20 lines
539 B
Ruby
Raw Normal View History

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
2021-03-11 19:13:27 +05:30
describe 'associations' do
2021-06-08 01:23:25 +05:30
it { is_expected.to belong_to(:integration) }
2019-09-04 21:01:54 +05:30
end
2020-10-24 23:57:45 +05:30
describe 'deployment_type' do
it { is_expected.to define_enum_for(:deployment_type).with_values([:unknown, :server, :cloud]).with_prefix(:deployment) }
end
2021-03-11 19:13:27 +05:30
describe 'encrypted attributes' do
subject { described_class.encrypted_attributes.keys }
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