Sha256: 55d858583fd085b7294e64923ba4cd2bc96a3e9be772839f3384138e32abf305
Contents?: true
Size: 746 Bytes
Versions: 28
Compression:
Stored size: 746 Bytes
Contents
# frozen_string_literal: true require 'spec_helpers/client' RSpec.describe FinApps::REST::Products, 'initialized with valid FinApps::Client object' do include SpecHelpers::Client subject(:products) { FinApps::REST::Products.new(client) } describe '#list' do context 'when called' do let(:list) { subject.list } let(:results) { list[0] } let(:error_messages) { list[1] } it { expect { list }.not_to raise_error } it('returns an array of records') { expect(results).to be_a(Array) } it('performs a get and returns the response') do expect(results[0]).to have_key(:code) end it('returns no error messages') { expect(error_messages).to be_empty } end end end
Version data entries
28 entries across 28 versions & 1 rubygems