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_name_spec.rb
2019-07-27 12:40:09 +02:00

18 lines
444 B
Ruby

require_relative '../../spec_helper'
require 'resolv'
describe "Resolv#getname" do
it "resolves 127.0.0.1" do
hosts = Resolv::Hosts.new(fixture(__FILE__ , "hosts"))
res = Resolv.new([hosts])
res.getname("127.0.0.1").should == "localhost"
end
it "raises ResolvError when there is no result" do
res = Resolv.new([])
-> {
res.getname("should.raise.error")
}.should raise_error(Resolv::ResolvError)
end
end