- or download this
use Test::Simple 'no_plan';
use lib './lib';
...
my $a = new A;
ok($a->run);
- or download this
package A;
use base 'CGI::Application';
use base 'B';
...
}
1;
- or download this
package B;
use CGI::Application::Plugin::AutoRunmode;
...
}
1;
- or download this
use base 'CGI::Application';
use CGI::Application::Plugin::AutoRunmode;
use base 'B';
- or download this
use base 'CGI::Application';
use CGI::Application::Plugin::AutoRunmode;
sub useme : Runmode {}