diff --git a/spec/lib/final_destination/http_spec.rb b/spec/lib/final_destination/http_spec.rb index 9ef4977826b..fe1132acc82 100644 --- a/spec/lib/final_destination/http_spec.rb +++ b/spec/lib/final_destination/http_spec.rb @@ -25,15 +25,6 @@ describe FinalDestination::HTTP do end end - def stub_ip_lookup(stub_addr, ips) - Addrinfo - .stubs(:getaddrinfo) - .with { |addr, _| addr == stub_addr } - .returns( - ips.map { |ip| Addrinfo.new([IPAddr.new(ip).ipv6? ? "AF_INET6" : "AF_INET", 80, nil, ip]) }, - ) - end - def stub_tcp_to_raise(stub_addr, exception) TCPSocket.stubs(:open).with { |addr| addr == stub_addr }.once.raises(exception) end diff --git a/spec/support/helpers.rb b/spec/support/helpers.rb index fef1ad63562..ff611df35e3 100644 --- a/spec/support/helpers.rb +++ b/spec/support/helpers.rb @@ -192,4 +192,13 @@ module Helpers queries end + + def stub_ip_lookup(stub_addr, ips) + Addrinfo + .stubs(:getaddrinfo) + .with { |addr, _| addr == stub_addr } + .returns( + ips.map { |ip| Addrinfo.new([IPAddr.new(ip).ipv6? ? "AF_INET6" : "AF_INET", 80, nil, ip]) }, + ) + end end