From 17ac70bd4d46f9002543cfdc99b26584788e320f Mon Sep 17 00:00:00 2001 From: Marc Peabody Date: Thu, 8 Oct 2009 10:16:57 -0400 Subject: [PATCH] hash keys and values must assert against sorted arrays - thanks gregmalcolm --- koans/about_hashes.rb | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/koans/about_hashes.rb b/koans/about_hashes.rb index 634323a..e781896 100644 --- a/koans/about_hashes.rb +++ b/koans/about_hashes.rb @@ -38,16 +38,10 @@ class AboutHashes < EdgeCase::Koan assert_equal hash1, hash2 end - def test_hash_keys_and_values + def test_hash_keys_and_values hash = { :one => "uno", :two => "dos" } - assert_equal __, hash.keys.size - assert_equal __, hash.has_key?(:one) - - # Why not just compare hash.keys to [:one, :two]? - # - # Clue: What was the name of the previous test again? - + assert_equal __, hash.keys.sort assert_equal __, hash.values.sort end