Sha256: 1730ab800ebca8aa13f04798a717b12001f4e0bbd8a3b14497500fefc6034bde
Contents?: true
Size: 390 Bytes
Versions: 68
Compression:
Stored size: 390 Bytes
Contents
require File.dirname(__FILE__) + '/../spec_helper' describe Hash do describe '.[]' do it "should accept an Array argument (Ruby 1.8.6 and older)" do list = [['foo', 'bar'], ['foo2', 'bar2']] Hash[list].should == {'foo' => 'bar', 'foo2' => 'bar2'} end it "should accept an array as a key" do Hash[['a', 'b'], 1].should == {['a', 'b'] => 1} end end end
Version data entries
68 entries across 52 versions & 7 rubygems