1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/resolv/test_mdns.rb

19 lines
445 B
Ruby
Raw Normal View History

# frozen_string_literal: false
require 'test/unit'
require 'resolv'
class TestResolvMDNS < Test::Unit::TestCase
def setup
end
def test_mdns_each_address
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
end
end