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
Benoit Daloze 60af6fef3c Fix Resolv specs to not depend on a system /etc/hosts file
* 20190609T153804Z.fail.html.gz
* Thanks @naruse for the tip.
2019-06-10 12:45:00 +02:00

14 lines
383 B
Ruby

require_relative '../../spec_helper'
require 'resolv'
describe "Resolv#getaddresses" do
platform_is_not :windows 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
end