Sha256: c97a7c1aa799048aabb611ff1c3db5bf9e36ae7aefc8d34f1c7f4c2ed3150e53
Contents?: true
Size: 1.44 KB
Versions: 16
Compression:
Stored size: 1.44 KB
Contents
# frozen_string_literal: true require 'spec_helper' describe Zoom::Actions::Billing do let(:zc) { zoom_client } let(:args) { { account_id: '1' } } describe '#billing_plans_list action' do context 'with a valid response' do before :each do stub_request( :get, zoom_url("/accounts/#{args[:account_id]}/plans") ).to_return(body: json_response('billing', 'plans_list'), headers: { 'Content-Type' => 'application/json' }) end it 'makes the request' do zc.billing_plans_list(args) expect(WebMock).to have_requested(:get, zoom_url("/accounts/#{args[:account_id]}/plans")).with(headers: request_headers) end it 'returns a hash' do expect(zc.billing_plans_list(args)).to be_kind_of(Hash) end it 'raises an error when missing a required param' do expect { zc.billing_plans_list }.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]}/plans") ).to_return(status: 400, body: json_response('error', 'not_found'), headers: { 'Content-Type' => 'application/json' }) end it 'raises Zoom::Error exception' do expect { zc.billing_plans_list(args) }.to raise_error(Zoom::Error) end end end end
Version data entries
16 entries across 16 versions & 1 rubygems