From: Matthew Boston Date: Tue, 7 Feb 2012 04:17:48 +0000 (-0500) Subject: whitespace cleanup X-Git-Url: https://git.eng.unimelb.edu.au/public?p=ruby_koans.git;a=commitdiff_plain;h=34d1127f986d64f6e3cfba2ea0f2c69d2f42154e whitespace cleanup --- diff --git a/src/about_class_methods.rb b/src/about_class_methods.rb index 930345d..2cadbaa 100644 --- a/src/about_class_methods.rb +++ b/src/about_class_methods.rb @@ -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