Finished slides & exercises for section 3on basic attributes.
[gitmo/moose-presentations.git] / moose-class / exercises / t / 01-classes.t
index 2e71127..e9747fb 100644 (file)
@@ -1,4 +1,4 @@
-# Your task ...
+# Your tasks ...
 #
 # Create a Person class in lib/Person.pm
 #
@@ -18,7 +18,7 @@
 #
 # An Employee has the following read-write attributes:
 #
-# * position - read-write
+# * title - read-write
 # * salary - read-write
 # * ssn - read-only
 #
@@ -33,6 +33,7 @@ use strict;
 use warnings;
 
 use lib 't/lib';
+
 use MooseClass::Tests;
 
 use Person;