Test that Employee is clean and immutable in tests01
Dave Rolsky [Fri, 4 Feb 2011 16:44:33 +0000 (10:44 -0600)]
moose-class/exercises/t/lib/MooseClass/Tests.pm

index d5a86bf..8beeabb 100644 (file)
@@ -30,6 +30,9 @@ sub tests01 {
 
     no_droppings('Person');
     is_immutable('Person');
+
+    no_droppings('Employee');
+    is_immutable('Employee');
 }
 
 sub tests02 {