1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'spec_helper'))
RSpec.describe HTTParty::Error do
subject { described_class }
describe '#ancestors' do
subject { super().ancestors }
it { is_expected.to include(StandardError) }
end
describe HTTParty::UnsupportedFormat do
describe '#ancestors' do
subject { super().ancestors }
it { is_expected.to include(HTTParty::Error) }
end
end
describe HTTParty::UnsupportedURIScheme do
describe '#ancestors' do
subject { super().ancestors }
it { is_expected.to include(HTTParty::Error) }
end
end
describe HTTParty::ResponseError do
describe '#ancestors' do
subject { super().ancestors }
it { is_expected.to include(HTTParty::Error) }
end
end
describe HTTParty::RedirectionTooDeep do
describe '#ancestors' do
subject { super().ancestors }
it { is_expected.to include(HTTParty::ResponseError) }
end
end
end
|