1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/resolv/get_addresses_spec.rb
2019-06-10 12:47:08 +02:00

12 lines
335 B
Ruby

require_relative '../../spec_helper'
require 'resolv'
describe "Resolv#getaddresses" do
it "resolves localhost" do
hosts = Resolv::Hosts.new(fixture(__FILE__ , "hosts"))
res = Resolv.new([hosts])
res.getaddresses("localhost").should == ["127.0.0.1"]
res.getaddresses("localhost4").should == ["127.0.0.1"]
end
end