Sha256: afb6f926695d20f995c25f38e752fd1550ec6c815e78e37dddf6977a3a773c29

Contents?: true

Size: 1.08 KB

Versions: 16

Compression:

Stored size: 1.08 KB

Contents

# frozen_string_literal: true

require 'spec_helpers/client'
require 'spec_helpers/api_request'

RSpec.describe FinApps::REST::PlaidAccounts do
  include SpecHelpers::Client

  # noinspection RubyBlockToMethodReference
  let(:api_client) { client }

  RSpec.shared_examples 'a request that returns account data' do |_parameter|
    it('returns accounts data') do
      expect(subject[RESULTS]).to have_key(:balances)
    end
  end

  describe '#show' do
    subject(:show) do
      described_class.new(api_client).show(
        :account_id
      )
    end

    it_behaves_like 'an API request'
    it_behaves_like 'a successful request'
    it_behaves_like 'a request that returns account data'
  end

  describe '#list' do
    subject(:list) { described_class.new(api_client).list }

    it_behaves_like 'an API request'
    it_behaves_like 'a successful request'
    it('returns an Array of institution data') {
      expect(list[RESULTS].first).to have_key(:plaid_institution_id)
    }

    it('returns institution account data') {
      expect(list[RESULTS].first).to have_key(:accounts)
    }
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
finapps-6.13.1 spec/rest/plaid/plaid_accounts_spec.rb
finapps-6.13.0 spec/rest/plaid/plaid_accounts_spec.rb
finapps-6.12.0 spec/rest/plaid/plaid_accounts_spec.rb
finapps-6.11.0 spec/rest/plaid/plaid_accounts_spec.rb
finapps-6.10.2 spec/rest/plaid/plaid_accounts_spec.rb
finapps-6.10.1 spec/rest/plaid/plaid_accounts_spec.rb
finapps-6.10.0 spec/rest/plaid/plaid_accounts_spec.rb
finapps-6.9.2 spec/rest/plaid/plaid_accounts_spec.rb
finapps-6.9.1 spec/rest/plaid/plaid_accounts_spec.rb
finapps-6.9.0 spec/rest/plaid/plaid_accounts_spec.rb
finapps-6.8.0 spec/rest/plaid/plaid_accounts_spec.rb
finapps-6.7.1 spec/rest/plaid/plaid_accounts_spec.rb
finapps-6.7.0 spec/rest/plaid/plaid_accounts_spec.rb
finapps-6.6.1 spec/rest/plaid/plaid_accounts_spec.rb
finapps-6.6.0 spec/rest/plaid/plaid_accounts_spec.rb
finapps-6.5.0 spec/rest/plaid/plaid_accounts_spec.rb