Sha256: f5e4c775f7e21a21d318f2cbff71395f2d5bbaa5f8018245ac05a8cf10097ff5

Contents?: true

Size: 723 Bytes

Versions: 35

Compression:

Stored size: 723 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

35 entries across 35 versions & 3 rubygems

Version Path
opal-0.9.0.beta2 spec/opal/core/language/versions/hash_1.9.rb
opal-0.9.0.beta1 spec/opal/core/language/versions/hash_1.9.rb
opal-0.8.1 spec/opal/core/language/versions/hash_1.9.rb
opal-0.8.1.rc1 spec/opal/core/language/versions/hash_1.9.rb
opal-wedge-0.9.0.dev spec/opal/core/language/versions/hash_1.9.rb
opal-0.8.0 spec/opal/core/language/versions/hash_1.9.rb
opal-0.8.0.rc3 spec/opal/core/language/versions/hash_1.9.rb
opal-0.8.0.rc2 spec/opal/core/language/versions/hash_1.9.rb
opal-0.8.0.rc1 spec/opal/core/language/versions/hash_1.9.rb
opal-0.8.0.beta1 spec/opal/core/language/versions/hash_1.9.rb
opal-0.7.2 spec/opal/core/language/versions/hash_1.9.rb
opal-0.7.1 spec/opal/core/language/versions/hash_1.9.rb
opal-0.7.0 spec/opal/core/language/versions/hash_1.9.rb
opal-0.7.0.rc1 spec/opal/core/language/versions/hash_1.9.rb
opal-0.7.0.beta3 spec/opal/core/language/versions/hash_1.9.rb
opal-0.6.3 spec/opal/core/language/versions/hash_1.9.rb
opal-0.7.0.beta2 spec/opal/core/language/versions/hash_1.9.rb
opal-cj-0.7.0.beta2 spec/opal/core/language/versions/hash_1.9.rb
opal-cj-0.7.0.beta1 spec/opal/core/language/versions/hash_1.9.rb
opal-0.7.0.beta1 spec/opal/core/language/versions/hash_1.9.rb