summaryrefslogtreecommitdiffhomepage
path: root/test/t
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-03-09 01:27:34 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-03-09 01:27:34 +0900
commit452bf73c2317cc4c9cf69b4dbf3ff82c3bde89c3 (patch)
tree5fb6ec876dee56c557a101e3b94b01635715809b /test/t
parent6a23be78055555c005a4d57f0643f652ad39aac8 (diff)
parentd7b179475b3dbdc4fa6441a74e97560936e4942e (diff)
downloadmruby-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.rb1
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