The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package t::lib::MyTestModule;

use strict;

use vars qw{$VERSION};
BEGIN {
	$VERSION = '0.02';
}

sub import {
	my $class = shift;
	$main::LOADED += 10;
	$main::LOADED += scalar(@_);
	return 1;
}

1;