Sha256: e3f77b3d1082d9e33cef1931fa73f7a75a6fda07b9f0b61c10d64f1d169d8a75
Contents?: true
Size: 485 Bytes
Versions: 83
Compression:
Stored size: 485 Bytes
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' describe "Array.allocate" do it "returns an instance of Array" do ary = Array.allocate ary.should be_kind_of(Array) end it "returns a fully-formed instance of Array" do ary = Array.allocate ary.size.should == 0 ary << 1 ary.should == [1] end it "does not accept any arguments" do lambda { Array.allocate(1) }.should raise_error(ArgumentError) end end
Version data entries
83 entries across 83 versions & 1 rubygems