More work on tests
[p5sagit/Class-C3-Componentised.git] / t / lib / MyModule / Plugin / Foo.pm
1 package # hide from pause
2   MyModule::Plugin::Foo;
3
4 use Class::C3;
5
6 sub message { 
7   $DB::single = 1;
8   join(" ", "Foo", shift->next::method) 
9 }
10
11 1;