Sha256: 4642f2c85c984039ace73a51eefa56163b1b6d0d7a4dcf1cbf6f7b76edba2eb9
Contents?: true
Size: 403 Bytes
Versions: 83
Compression:
Stored size: 403 Bytes
Contents
describe "The 'case'-construct" do it "takes multiple expanded arrays" do a1 = ['f', 'o', 'o'] a2 = ['b', 'a', 'r'] case 'f' when *a1, *['x', 'y', 'z'] "foo" when *a2, *['x', 'y', 'z'] "bar" end.should == "foo" case 'b' when *a1, *['x', 'y', 'z'] "foo" when *a2, *['x', 'y', 'z'] "bar" end.should == "bar" end end
Version data entries
83 entries across 83 versions & 1 rubygems