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_names_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

13 lines
336 B
Ruby

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