Sha256: a1aa0727b8a56d513330fba4eb1e1385b06b400be5195dc8e426a98a11e39ffe

Contents?: true

Size: 1.43 KB

Versions: 28

Compression:

Stored size: 1.43 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 have_key(: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 do
        expect { update }.to raise_error(FinAppsCore::MissingArgumentsError)
      end
    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') do
        expect(update[RESULTS]).to be_nil
      end
      it('error_messages array is empty') do
        expect(update[ERROR_MESSAGES]).to be_empty
      end
    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') do
        expect(update[ERROR_MESSAGES]).not_to be_empty
      end
    end
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
finapps-5.0.11 spec/rest/tenant_settings_spec.rb
finapps-5.0.10 spec/rest/tenant_settings_spec.rb
finapps-5.0.9 spec/rest/tenant_settings_spec.rb
finapps-5.0.8 spec/rest/tenant_settings_spec.rb
finapps-5.0.7 spec/rest/tenant_settings_spec.rb
finapps-5.0.6 spec/rest/tenant_settings_spec.rb
finapps-5.0.5 spec/rest/tenant_settings_spec.rb
finapps-5.0.4 spec/rest/tenant_settings_spec.rb