File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11require_relative '../spec_helper'
22
33describe "Socket.socketpair" do
4- it "is an alias for Socket.pair" do
4+ it "is an alias of Socket.pair" do
55 Socket . method ( :socketpair ) . should == Socket . method ( :pair )
66 end
77end
Original file line number Diff line number Diff line change 22require 'stringio'
33
44describe "StringIO#isatty" do
5- it "is an alias of StringIO. tty?" do
5+ it "is an alias of StringIO# tty?" do
66 StringIO . instance_method ( :isatty ) . should == StringIO . instance_method ( :tty? )
77 end
88end
Original file line number Diff line number Diff line change 22require 'stringio'
33
44describe "StringIO#tell" do
5- it "is an alias of StringIO. pos" do
5+ it "is an alias of StringIO# pos" do
66 StringIO . instance_method ( :tell ) . should == StringIO . instance_method ( :pos )
77 end
88end
Original file line number Diff line number Diff line change 66 StringScanner . instance_method ( :pointer ) . should == StringScanner . instance_method ( :pos )
77 end
88end
9+
10+ describe "StringScanner#pointer=" do
11+ it "is an alias of StringScanner#pos=" do
12+ StringScanner . instance_method ( :pointer= ) . should == StringScanner . instance_method ( :pos= )
13+ end
14+ end
You can’t perform that action at this time.
0 commit comments