mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-21 10:54:35 +08:00
8 lines
140 B
Ruby
8 lines
140 B
Ruby
describe "Hash" do
|
|
it 'can be created using []' do
|
|
h = Hash[a: 'a', b: 'b']
|
|
h[:a].should == 'a'
|
|
h[:b].should == 'b'
|
|
end
|
|
end
|