Apache2-SQLRequest

 view release on metacpan or  search on metacpan

t/response/TestApache/conf.pm  view on Meta::CPAN

package TestApache::conf;
use strict;
use warnings; # FATAL => 'all';

use base qw(Apache2::SQLRequest);

use Apache2::RequestIO   ();
use Apache2::Const -compile => qw(OK);
use Data::Dumper qw(Dumper);

sub handler : method {
    my $r = shift->SUPER::new(shift);
    my $conf = $r->{conf};
    $r->content_type('text/plain');
    $r->print(Dumper($r));
    return Apache2::Const::OK;
}

1;

t/response/TestApache/subclass.pm  view on Meta::CPAN

package TestApache::subclass;
use strict;
use warnings FATAL => 'all';

use base qw(Apache2::SQLRequest);
use Apache2::Log ();

use Apache2::RequestIO ();
use Apache2::Const -compile => qw(OK);

use Data::Dumper qw(Dumper);

sub handler : method {
    my $r = shift->SUPER::new(shift);
    $r->log->warn("this should crash me :(");
    $r->print(Dumper($r));
    return Apache2::Const::OK;
}

1;



( run in 0.538 second using v1.01-cache-2.11-cpan-4d50c553e7e )