From: Dave Rolsky Date: Tue, 29 Jun 2010 21:50:28 +0000 (-0500) Subject: Make tests match the order of the instructions for test 01 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b071f963b3be9dddd77cb9eca4417aad72152076;p=gitmo%2Fmoose-presentations.git Make tests match the order of the instructions for test 01 --- diff --git a/moose-class/exercises/t/lib/MooseClass/Tests.pm b/moose-class/exercises/t/lib/MooseClass/Tests.pm index 74c9edc..c3a244f 100644 --- a/moose-class/exercises/t/lib/MooseClass/Tests.pm +++ b/moose-class/exercises/t/lib/MooseClass/Tests.pm @@ -17,9 +17,6 @@ sub tests01 { has_method( 'Person', 'full_name' ); - no_droppings('Person'); - is_immutable('Person'); - person01(); has_meta('Employee'); @@ -32,6 +29,9 @@ sub tests01 { has_overridden_method( 'Employee', 'full_name' ); employee01(); + + no_droppings('Person'); + is_immutable('Person'); } sub tests02 {