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
2019-06-10 12:47:08 +02:00

11 lines
290 B
Ruby

require_relative '../../spec_helper'
require 'resolv'
describe "Resolv#getnames" 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