Sha256: 9ed02499d3427d1f8e493c25bf2c9fe0498a226bd2470372116c531515d8f93a
Contents?: true
Size: 1.37 KB
Versions: 16
Compression:
Stored size: 1.37 KB
Contents
# frozen_string_literal: true require 'spec_helpers/client' RSpec.describe FinApps::REST::TenantSettings do include SpecHelpers::Client subject { FinApps::REST::TenantSettings.new(client) } describe '#show' do let(:show) { subject.show } it { expect { show }.not_to raise_error } it('performs a get and returns the response') do expect(show[RESULTS]).to respond_to(:iav_default_product) end it('returns no error messages') { expect(show[ERROR_MESSAGES]).to be_empty } end describe '#update' do let(:update) { subject.update(params) } context 'when missing params' do let(:params) { nil } it { expect { update }.to raise_error(FinAppsCore::MissingArgumentsError) } end context 'when valid params are provided' do let(:params) { { iav_default_product: 'valid' } } it { expect { update }.not_to raise_error } it('performs put and returns no content') { expect(update[RESULTS]).to be_nil } it('error_messages array is empty') { expect(update[ERROR_MESSAGES]).to be_empty } end context 'when invalid params are provided' do let(:params) { { bad_params: true } } it { expect { update }.not_to raise_error } it('results is nil') { expect(update[RESULTS]).to be_nil } it('error_messages array is populated') { expect(update[ERROR_MESSAGES]).not_to be_empty } end end end
Version data entries
16 entries across 16 versions & 1 rubygems