Redo method modifiers exercise to use before/after/around instead of augment/inner
[gitmo/moose-presentations.git] / moose-class / exercises / answers / 04-method-modifiers / TPSReport.pm
diff --git a/moose-class/exercises/answers/04-method-modifiers/TPSReport.pm b/moose-class/exercises/answers/04-method-modifiers/TPSReport.pm
deleted file mode 100644 (file)
index c88a79a..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-package TPSReport;
-
-use Moose;
-
-extends 'Report';
-
-has [ qw( t p s ) ] => ( is => 'ro' );
-
-augment output => sub {
-    my $self = shift;
-
-    return join q{}, map { "$_: " . $self->$_ . "\n" } qw( t p s );
-};
-
-no Moose;
-
-__PACKAGE__->meta->make_immutable;
-
-1;