Adding missing assert in iteration test.
authorKatrina Owen <katrina.owen@gmail.com>
Mon, 16 May 2011 21:48:53 +0000 (23:48 +0200)
committerKatrina Owen <katrina.owen@gmail.com>
Mon, 16 May 2011 21:48:53 +0000 (23:48 +0200)
Also checking against symbol rather than string.

koans/about_iteration.rb

index 5c5a2b0..b48c278 100644 (file)
@@ -3,7 +3,7 @@ require File.expand_path(File.dirname(__FILE__) + '/edgecase')
 class AboutIteration < EdgeCase::Koan
 
   def test_each_is_a_method_on_arrays
-    [].methods.include?("each")
+    assert_equal __, [].methods.include?(:each)
   end
 
   def test_iterating_with_each