mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to ruby/spec@9be7c7e
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64180 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
aeeaadaad0
commit
b53cf149ad
246 changed files with 9108 additions and 548 deletions
|
@ -1,5 +1,4 @@
|
|||
require_relative '../../../spec_helper'
|
||||
require 'socket'
|
||||
require_relative '../spec_helper'
|
||||
|
||||
describe "Addrinfo#ipv4_private?" do
|
||||
describe "for an ipv4 socket" do
|
||||
|
@ -9,7 +8,14 @@ describe "Addrinfo#ipv4_private?" do
|
|||
end
|
||||
|
||||
it "returns true for a private address" do
|
||||
@private.ipv4_private?.should be_true
|
||||
Addrinfo.ip('10.0.0.0').ipv4_private?.should == true
|
||||
Addrinfo.ip('10.0.0.5').ipv4_private?.should == true
|
||||
|
||||
Addrinfo.ip('172.16.0.0').ipv4_private?.should == true
|
||||
Addrinfo.ip('172.16.0.5').ipv4_private?.should == true
|
||||
|
||||
Addrinfo.ip('192.168.0.0').ipv4_private?.should == true
|
||||
Addrinfo.ip('192.168.0.5').ipv4_private?.should == true
|
||||
end
|
||||
|
||||
it "returns false for a public address" do
|
||||
|
@ -27,7 +33,7 @@ describe "Addrinfo#ipv4_private?" do
|
|||
end
|
||||
end
|
||||
|
||||
platform_is_not :windows do
|
||||
with_feature :unix_socket do
|
||||
describe "for a unix socket" do
|
||||
before :each do
|
||||
@addrinfo = Addrinfo.unix("/tmp/sock")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue