Help for this page

Select Code to Download


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