summaryrefslogtreecommitdiff
path: root/spec/hashie/hash_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/hashie/hash_spec.rb')
-rw-r--r--spec/hashie/hash_spec.rb21
1 files changed, 18 insertions, 3 deletions
diff --git a/spec/hashie/hash_spec.rb b/spec/hashie/hash_spec.rb
index 1f15208..0282258 100644
--- a/spec/hashie/hash_spec.rb
+++ b/spec/hashie/hash_spec.rb
@@ -64,7 +64,12 @@ describe Hash do
end
it '#to_hash returns a hash with same keys' do
- hash = Hashie::Hash['a' => 'hey', 123 => 'bob', 'array' => [1, 2, 3], subhash: ClassRespondsToHash.new]
+ hash = Hashie::Hash[
+ 'a' => 'hey',
+ 123 => 'bob',
+ 'array' => [1, 2, 3],
+ subhash: ClassRespondsToHash.new
+ ]
stringified_hash = hash.to_hash
expected = {
@@ -78,7 +83,12 @@ describe Hash do
end
it '#to_hash with stringify_keys set to true returns a hash with stringified_keys' do
- hash = Hashie::Hash['a' => 'hey', 123 => 'bob', 'array' => [1, 2, 3], subhash: ClassRespondsToHash.new]
+ hash = Hashie::Hash[
+ 'a' => 'hey',
+ 123 => 'bob',
+ 'array' => [1, 2, 3],
+ subhash: ClassRespondsToHash.new
+ ]
symbolized_hash = hash.to_hash(stringify_keys: true)
expected = {
@@ -92,7 +102,12 @@ describe Hash do
end
it '#to_hash with symbolize_keys set to true returns a hash with symbolized keys' do
- hash = Hashie::Hash['a' => 'hey', 123 => 'bob', 'array' => [1, 2, 3], subhash: ClassRespondsToHash.new]
+ hash = Hashie::Hash[
+ 'a' => 'hey',
+ 123 => 'bob',
+ 'array' => [1, 2, 3],
+ subhash: ClassRespondsToHash.new
+ ]
symbolized_hash = hash.to_hash(symbolize_keys: true)
expected = {