Link to metacpan, not s.c.o
[gitmo/moose-presentations.git] / moose-class / exercises / t / 03-basic-attributes.t
index c0d3bad..94e4bb3 100644 (file)
 # the first and last name. Use the title's predicate method in the new
 # full_name method.
 #
-# Go back to the Employee class
+# Go back to the Employee class.
 #
 # Make the title attribute default to the string 'Worker' for the
 # Employee class. You can now inherit full_name from the Person class
 # rather than re-implementing it.
 #
 # Add a read-write salary_level attribute. This will be a number from
-# 1-10 (but we will deal with enforcing this later). This attribute
+# 1-10 (but you will deal with enforcing this later). This attribute
 # should default to 1.
 #
 # Make the salary attribute read-only. Also make it lazy. The default
@@ -38,7 +38,4 @@ use lib 't/lib';
 
 use MooseClass::Tests;
 
-use Person;
-use Employee;
-
 MooseClass::Tests::tests03();