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::IssueTrackerData do
|
2022-07-23 23:45:48 +05:30
|
|
|
it_behaves_like Integrations::BaseDataFields
|
|
|
|
|
|
|
|
describe 'encrypted attributes' do
|
|
|
|
subject { described_class.encrypted_attributes.keys }
|
|
|
|
|
|
|
|
it { is_expected.to contain_exactly(:issues_url, :new_issue_url, :project_url) }
|
2019-09-04 21:01:54 +05:30
|
|
|
end
|
|
|
|
end
|