The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package MyTest::Extend::Plugin::Bar;
use strict;

sub new {
	my $class = shift;
	my %self = @_;

	return bless \%self, $class;
}


sub nork {
	return $_[0]->{'nork'};
}
1;