Sha256: a9a01b9b16e2b4273874e921ad730590f20a1b7d68e347961f198545686a7647

Contents?: true

Size: 724 Bytes

Versions: 52

Compression:

Stored size: 724 Bytes

Contents

describe "Hash literal" do
  describe 'new-style hash syntax' do
    it 'constructs a new hash with the given elements' do
      {foo: 123}.should == {:foo => 123}
      {rbx: :cool, specs: 'fail_sometimes'}.should == {:rbx => :cool, :specs => 'fail_sometimes'}
    end

    it 'ignores a hanging comma' do
      {foo: 123,}.should == {:foo => 123}
      {rbx: :cool, specs: 'fail_sometimes',}.should == {:rbx => :cool, :specs => 'fail_sometimes'}
    end

    it 'can mix and match syntax styles' do
      {rbx: :cool, :specs => 'fail_sometimes'}.should == {:rbx => :cool, :specs => 'fail_sometimes'}
      {'rbx' => :cool, specs: 'fail_sometimes'}.should == {'rbx' => :cool, :specs => 'fail_sometimes'}
    end
  end
end

Version data entries

52 entries across 52 versions & 2 rubygems

Version Path
rhodes-7.6.0 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
rhodes-7.5.1 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
rhodes-7.4.1 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
rhodes-7.1.17 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
rhodes-6.2.0 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
rhodes-6.0.11 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
rhodes-5.5.18 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
rhodes-5.5.17 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
rhodes-5.5.15 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
rhodes-5.5.0.22 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
rhodes-5.5.2 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
rhodes-5.5.0.7 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
rhodes-5.5.0.3 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
rhodes-5.5.0 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
tauplatform-1.0.3 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
tauplatform-1.0.2 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
tauplatform-1.0.1 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
rhodes-3.5.1.12 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
rhodes-3.3.5 spec/framework_spec/app/spec/language/versions/hash_1.9.rb
rhodes-3.4.2 spec/framework_spec/app/spec/language/versions/hash_1.9.rb