Sha256: d86be48239988ab30585497c640f3949706714412a71f8f59c67b731be8c61a2
Contents?: true
Size: 1.28 KB
Versions: 16
Compression:
Stored size: 1.28 KB
Contents
# frozen_string_literal: true require 'spec_helper' RSpec.describe Zoom::Actions::Account do let(:zc) { zoom_client } let(:args) { { account_id: 1 } } describe '#account_managed_domains action' do context 'with a valid response' do before :each do stub_request( :get, zoom_url("/accounts/#{args[:account_id]}/managed_domains") ).to_return(body: json_response('account', 'managed_domains'), headers: { 'Content-Type' => 'application/json' }) end it 'returns a hash' do expect(zc.account_managed_domains(args)).to be_kind_of(Hash) end it 'raises an error when missing a required param' do expect { zc.account_managed_domains }.to raise_error(Zoom::ParameterMissing, [:account_id].to_s) end end context 'with a 4xx response' do before :each do stub_request( :get, zoom_url("/accounts/#{args[:account_id]}/managed_domains") ).to_return(status: 400, body: json_response('error', 'not_found'), headers: { 'Content-Type' => 'application/json' }) end it 'raises Zoom::Error exception' do expect { zc.account_managed_domains(args) }.to raise_error(Zoom::Error) end end end end
Version data entries
16 entries across 16 versions & 1 rubygems