Add test that Person preserves account object for 06 tests
Dave Rolsky [Fri, 4 Feb 2011 21:56:49 +0000 (15:56 -0600)]
moose-class/exercises/t/lib/MooseClass/Tests.pm

index 8beeabb..06849e0 100644 (file)
@@ -672,9 +672,17 @@ sub employee03 {
 }
 
 sub person06 {
+    my $account = BankAccount->new();
+
     my $person = Person->new(
         first_name => 'Bilbo',
         last_name  => 'Baggins',
+        account    => $account,
+    );
+
+    is(
+        $person->account, $account,
+        'account object passed to Person->new is still in object'
     );
 
     isa_ok( $person->account, 'BankAccount' );