diff options
| author | ksss <[email protected]> | 2014-03-08 17:51:21 +0900 |
|---|---|---|
| committer | ksss <[email protected]> | 2014-03-08 17:51:21 +0900 |
| commit | d7b179475b3dbdc4fa6441a74e97560936e4942e (patch) | |
| tree | b9403f8e5ae45374144bd2211b194e28d4dab01c /test | |
| parent | 058bb18f280dddb53ac40c838b371e9469024274 (diff) | |
| download | mruby-d7b179475b3dbdc4fa6441a74e97560936e4942e.tar.gz mruby-d7b179475b3dbdc4fa6441a74e97560936e4942e.zip | |
fix #1823
Diffstat (limited to 'test')
| -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 |
