mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
111a2de495
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60306 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
22 lines
550 B
Ruby
22 lines
550 B
Ruby
# frozen_string_literal: false
|
|
require 'test/unit'
|
|
require 'resolv'
|
|
|
|
class TestResolvMDNS < Test::Unit::TestCase
|
|
def setup
|
|
end
|
|
|
|
def test_mdns_each_address
|
|
begin
|
|
mdns = Resolv::MDNS.new
|
|
mdns.each_resource '_http._tcp.local', Resolv::DNS::Resource::IN::PTR do |r|
|
|
srv = mdns.getresource r.name, Resolv::DNS::Resource::IN::SRV
|
|
mdns.each_address(srv.target) do |result|
|
|
assert_not_nil(result)
|
|
end
|
|
end
|
|
rescue Errno::EADDRNOTAVAIL
|
|
# Handle Raspberry Pi environment.
|
|
end
|
|
end
|
|
end
|