2021-11-11 11:23:49 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe Integrations::ZentaoTrackerData do
|
2022-07-23 23:45:48 +05:30
|
|
|
it_behaves_like Integrations::BaseDataFields
|
|
|
|
|
2021-11-11 11:23:49 +05:30
|
|
|
describe 'factory available' do
|
|
|
|
let(:zentao_tracker_data) { create(:zentao_tracker_data) }
|
|
|
|
|
|
|
|
it { expect(zentao_tracker_data.valid?).to eq true }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'encrypted attributes' do
|
2023-04-23 21:23:45 +05:30
|
|
|
subject { described_class.attr_encrypted_attributes.keys }
|
2021-11-11 11:23:49 +05:30
|
|
|
|
|
|
|
it { is_expected.to contain_exactly(:url, :api_url, :zentao_product_xid, :api_token) }
|
|
|
|
end
|
|
|
|
end
|