diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-03-09 01:27:34 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-03-09 01:27:34 +0900 |
| commit | 452bf73c2317cc4c9cf69b4dbf3ff82c3bde89c3 (patch) | |
| tree | 5fb6ec876dee56c557a101e3b94b01635715809b /test/t | |
| parent | 6a23be78055555c005a4d57f0643f652ad39aac8 (diff) | |
| parent | d7b179475b3dbdc4fa6441a74e97560936e4942e (diff) | |
| download | mruby-452bf73c2317cc4c9cf69b4dbf3ff82c3bde89c3.tar.gz mruby-452bf73c2317cc4c9cf69b4dbf3ff82c3bde89c3.zip | |
Merge pull request #1832 from ksss/fix-1823
fix #1823
Diffstat (limited to 'test/t')
| -rw-r--r-- | test/t/hash.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/t/hash.rb b/test/t/hash.rb index 92bc223b6..e7d5e8f74 100644 --- a/test/t/hash.rb +++ b/test/t/hash.rb @@ -12,6 +12,7 @@ end assert('Hash#==', '15.2.13.4.1') do assert_true({ 'abc' => 'abc' } == { 'abc' => 'abc' }) assert_false({ 'abc' => 'abc' } == { 'cba' => 'cba' }) + assert_true({ :equal => 1 } == { :equal => 1.0 }) end assert('Hash#[]', '15.2.13.4.2') do |
