Back ported a lot of changes made to the Koans directory.
[ruby_koans.git] / src / about_methods.rb
index 9e7af37..b720010 100644 (file)
@@ -72,6 +72,7 @@ class AboutMethods < EdgeCase::Koan
   end
 
   def test_calling_with_variable_arguments
+    assert_equal __(Array), method_with_var_args.class
     assert_equal __([]), method_with_var_args
     assert_equal __([:one]), method_with_var_args(:one)
     assert_equal __([:one, :two]), method_with_var_args(:one, :two)