Merge branch 'master' of github.com:edgecase/ruby_koans
authorMatthew Boston <matthew.boston@gmail.com>
Thu, 23 Feb 2012 16:19:54 +0000 (11:19 -0500)
committerMatthew Boston <matthew.boston@gmail.com>
Thu, 23 Feb 2012 16:19:54 +0000 (11:19 -0500)
src/about_class_methods.rb

index 930345d..2cadbaa 100644 (file)
@@ -47,7 +47,7 @@ class AboutClassMethods < EdgeCase::Koan
   end
 
   # ------------------------------------------------------------------
-  
+
   class Dog2
     def wag
       :instance_level_wag
@@ -96,14 +96,13 @@ class AboutClassMethods < EdgeCase::Koan
   def test_you_can_define_class_methods_inside_the_class
     assert_equal __(:dogs_class_method), Dog.a_class_method
   end
-      
 
   # ------------------------------------------------------------------
 
   LastExpressionInClassStatement = class Dog
                                      21
                                    end
-  
+
   def test_class_statements_return_the_value_of_their_last_expression
     assert_equal __(21), LastExpressionInClassStatement
   end