Sha256: c0f87d370f6de8aaf50b96bdc21bbe3d86ac87b7bd07a2f691c2c7c4ab22ec25
Contents?: true
Size: 453 Bytes
Versions: 60
Compression:
Stored size: 453 Bytes
Contents
require File.expand_path('../../../spec_helper', __FILE__) 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
60 entries across 60 versions & 3 rubygems