Sha256: 3dac2a17e7ffdb126813b950671d7b066a738bfe5b4555e16ea76311e9d425da
Contents?: true
Size: 1.16 KB
Versions: 13
Compression:
Stored size: 1.16 KB
Contents
# frozen_string_literal: true RSpec.describe FinApps::REST::UserInstitutionsForms do include SpecHelpers::Client describe '#show' do context 'when missing site id' do subject { FinApps::REST::UserInstitutionsForms.new(client).show(nil) } it('raises missing argument error') { expect { subject }.to raise_error(FinAppsCore::MissingArgumentsError) } end context 'when valid site id provided' do subject { FinApps::REST::UserInstitutionsForms.new(client).show('valid_id') } it { expect { subject }.not_to raise_error } it('performs a get and returns the login html') { expect(subject[RESULTS]).to respond_to(:login_form_html) } it('returns no error messages') { expect(subject[ERROR_MESSAGES]).to be_empty } end context 'when invalid site id provided' do subject { FinApps::REST::UserInstitutionsForms.new(client).show('invalid_id') } it { expect { subject }.not_to raise_error } it('results is nil') { expect(subject[RESULTS]).to be_nil } it('error messages array is populated') do expect(subject[ERROR_MESSAGES].first.downcase).to eq('invalid institution id') end end end end
Version data entries
13 entries across 13 versions & 1 rubygems