Fix typo of subclasses (from subcases)
[ruby_koans.git] / src / about_inheritance.rb
index f516cd6..73030c6 100644 (file)
@@ -31,7 +31,7 @@ class AboutInheritance < EdgeCase::Koan
     assert_equal __(true), Chihuahua.ancestors.include?(Object)
   end
 
-  def test_subcases_inherit_behavior_from_parent_class
+  def test_subclasses_inherit_behavior_from_parent_class
     chico = Chihuahua.new("Chico")
     assert_equal __("Chico"), chico.name
   end