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/socket/addrinfo/ipv6_linklocal_spec.rb
eregon ebff0059f4 Add platform guards for AIX
* Most of these seem OS bugs.
* See 20180905T103302Z.fail.html.gz

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64644 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2018-09-05 20:39:19 +00:00

22 lines
705 B
Ruby

require_relative '../spec_helper'
guard -> { SocketSpecs.ipv6_available? } do
describe 'Addrinfo#ipv6_linklocal?' do
platform_is_not :aix do
it 'returns true for a link-local address' do
Addrinfo.ip('fe80::').ipv6_linklocal?.should == true
Addrinfo.ip('fe81::').ipv6_linklocal?.should == true
Addrinfo.ip('fe8f::').ipv6_linklocal?.should == true
Addrinfo.ip('fe80::1').ipv6_linklocal?.should == true
end
end
it 'returns false for a regular address' do
Addrinfo.ip('::1').ipv6_linklocal?.should == false
end
it 'returns false for an IPv4 address' do
Addrinfo.ip('127.0.0.1').ipv6_linklocal?.should == false
end
end
end