The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Aspect::Loader::TestMock::Object;
use strict;
use warnings;

sub new{
  my $class = shift;
  return bless {},$class;

}

sub hoge{return "hoge";}

1;