Sha256: 3c1369bc43a083db636b166148f9bd4d48e2b744e77ab5d8acef221be716ac5f
Contents?: true
Size: 404 Bytes
Versions: 49
Compression:
Stored size: 404 Bytes
Contents
# frozen_string_literal: true require 'rails_helper' describe LHC::Error do context 'response' do it 'throws timeout exception in case of a timeout' do stub_request(:any, 'local.ch').to_return(status: 403) begin LHC.get('local.ch') rescue => e expect(e.response).to be_kind_of(LHC::Response) expect(e.response.code).to eq 403 end end end end
Version data entries
49 entries across 49 versions & 1 rubygems