renameing to match expressions
This commit is contained in:
7
test/cases/hash_constant/hash.tst
Normal file
7
test/cases/hash_constant/hash.tst
Normal file
@ -0,0 +1,7 @@
|
||||
{ foo => 33 }
|
||||
-- -- --
|
||||
s(:expressions,
|
||||
s(:hash,
|
||||
s(:assoc,
|
||||
s(:name, :foo),
|
||||
s(:int, 33))))
|
7
test/cases/hash_constant/hash2.tst
Normal file
7
test/cases/hash_constant/hash2.tst
Normal file
@ -0,0 +1,7 @@
|
||||
{ foo => true }
|
||||
-- -- --
|
||||
s(:expressions,
|
||||
s(:hash,
|
||||
s(:assoc,
|
||||
s(:name, :foo),
|
||||
s(:true))))
|
10
test/cases/hash_constant/hash_list.tst
Normal file
10
test/cases/hash_constant/hash_list.tst
Normal file
@ -0,0 +1,10 @@
|
||||
{foo => 33 , bar => 42}
|
||||
-- -- --
|
||||
s(:expressions,
|
||||
s(:hash,
|
||||
s(:assoc,
|
||||
s(:name, :foo),
|
||||
s(:int, 33)),
|
||||
s(:assoc,
|
||||
s(:name, :bar),
|
||||
s(:int, 42))))
|
Reference in New Issue
Block a user