From: Dave Rolsky Date: Fri, 4 Feb 2011 16:44:33 +0000 (-0600) Subject: Test that Employee is clean and immutable in tests01 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8d4c9dbfd263d2af8a48bb97d7fd30a037edb90b;p=gitmo%2Fmoose-presentations.git Test that Employee is clean and immutable in tests01 --- diff --git a/moose-class/exercises/t/lib/MooseClass/Tests.pm b/moose-class/exercises/t/lib/MooseClass/Tests.pm index d5a86bf..8beeabb 100644 --- a/moose-class/exercises/t/lib/MooseClass/Tests.pm +++ b/moose-class/exercises/t/lib/MooseClass/Tests.pm @@ -30,6 +30,9 @@ sub tests01 { no_droppings('Person'); is_immutable('Person'); + + no_droppings('Employee'); + is_immutable('Employee'); } sub tests02 {