1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
require File.expand_path('../../../../spec_helper', __FILE__)
ruby_version_is "1.9" do
describe "Proc#parameters" do
it "returns an empty Array for a proc expecting no parameters" do
proc {}.parameters.should == []
end
it "returns an Array of Arrays for a proc expecting parameters" do
p = proc {|x| }
p.parameters.should be_an_instance_of(Array)
p.parameters.first.should be_an_instance_of(Array)
end
it "sets the first element of each sub-Array to :opt for optional arguments" do
proc {|x| }.parameters.first.first.should == :opt
proc {|y,*x| }.parameters.first.first.should == :opt
end
it "regards named parameters in procs as optional" do
proc {|x| }.parameters.first.first.should == :opt
end
it "regards parameters with default values as optional" do
lambda {|x=1| }.parameters.first.first.should == :opt
proc {|x=1| }.parameters.first.first.should == :opt
end
it "sets the first element of each sub-Array to :req for required arguments" do
lambda {|x,y=[]| }.parameters.first.first.should == :req
lambda {|y,*x| }.parameters.first.first.should == :req
end
it "regards named parameters in lambdas as required" do
lambda {|x| }.parameters.first.first.should == :req
end
it "sets the first element of each sub-Array to :rest for parameters prefixed with asterisks" do
lambda {|*x| }.parameters.first.first.should == :rest
lambda {|x,*y| }.parameters.last.first.should == :rest
proc {|*x| }.parameters.first.first.should == :rest
proc {|x,*y| }.parameters.last.first.should == :rest
end
it "sets the first element of each sub-Array to :block for parameters prefixed with ampersands" do
lambda {|&x| }.parameters.first.first.should == :block
lambda {|x,&y| }.parameters.last.first.should == :block
proc {|&x| }.parameters.first.first.should == :block
proc {|x,&y| }.parameters.last.first.should == :block
end
it "sets the second element of each sub-Array to the name of the argument" do
lambda {|x| }.parameters.first.last.should == :x
lambda {|x=Math::PI| }.parameters.first.last.should == :x
lambda {|an_argument, glark, &foo| }.parameters[1].last.should == :glark
lambda {|*rest| }.parameters.first.last.should == :rest
lambda {|&block| }.parameters.first.last.should == :block
proc {|x| }.parameters.first.last.should == :x
proc {|x=Math::PI| }.parameters.first.last.should == :x
proc {|an_argument, glark, &foo| }.parameters[1].last.should == :glark
proc {|*rest| }.parameters.first.last.should == :rest
proc {|&block| }.parameters.first.last.should == :block
end
it "ignores unnamed rest args" do
lambda {|x,|}.parameters.should == [[:req, :x]]
end
it "adds nameless rest arg for \"star\" argument" do
lambda {|x,*|}.parameters.should == [[:req, :x], [:rest]]
end
end
end
|