diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-05-08 16:25:40 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-05-08 16:25:40 +0900 |
| commit | 8e45630896af83ad9ad938ef135f51cfe35f885e (patch) | |
| tree | 464098db86772a557f860b8a5a7ec9aa421352a4 /test | |
| parent | 595b1990bccb6f592d7cbf8f26424bda1c10210b (diff) | |
| parent | c80103e89a7ddcbaa7b5fc470358a4bcae327953 (diff) | |
| download | mruby-8e45630896af83ad9ad938ef135f51cfe35f885e.tar.gz mruby-8e45630896af83ad9ad938ef135f51cfe35f885e.zip | |
Merge branch 'master' of github.com:mruby/mruby
Diffstat (limited to 'test')
| -rw-r--r-- | test/t/hash.rb | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/test/t/hash.rb b/test/t/hash.rb index 5ba476e40..ef03c4a26 100644 --- a/test/t/hash.rb +++ b/test/t/hash.rb @@ -52,9 +52,12 @@ end assert('Hash#default_proc', '15.2.13.4.7') do a = Hash.new - b = Hash.new {|s,k| s[k] = k} + b = Hash.new {|s,k| s[k] = k + k} + c = b[2] + d = b['cat'] - a.default_proc == nil and b.default_proc.class == Proc + a.default_proc == nil and b.default_proc.class == Proc and + c = 4 and d = 'catcat' end assert('Hash#delete', '15.2.13.4.8') do @@ -278,3 +281,11 @@ assert('Hash#select!') do h == {:two => 2, :four => 4} end +# Not ISO specified + +assert('Hash#inspect') do + h = { "c" => 300, "a" => 100, "d" => 400, "c" => 300 } + ret = h.to_s + + ret = "{\"c\"=>300, \"a\"=>100, \"d\"=>400}" +end |
