Apache-AppSamurai

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

      # Save this 'cause CPAN will chdir all over the place.
      my $cwd = Cwd::cwd();
      
      CPAN::Shell->install('Module::Build::Compat');
      CPAN::Shell->expand("Module", "Module::Build::Compat")->uptodate
	or die "Couldn't install Module::Build, giving up.\n";
      
      chdir $cwd or die "Cannot chdir() back to $cwd: $!";
    }
    eval "use Module::Build::Compat 0.02; 1" or die $@;
    use lib '_build/lib';
    Module::Build::Compat->run_build_pl(args => \@ARGV);
    require MyModuleBuilder;
    Module::Build::Compat->write_makefile(build_class => 'MyModuleBuilder');

t/70-apache-simple.at  view on Meta::CPAN

#!perl

use strict;
use warnings FATAL => 'all';

use Apache::Test;

use lib qw(t/lib blib/lib);

plan tests => 1, skip_reason("Live Apache tests not yet implemented");

# mod_auth can cause test failures if in the wrong spot in the
# Apache chain, so we just make sure it does not get added. (test case: static
# mod_perl build and everything else as a DSO).
Apache::TestConfig::autoconfig_skip_module_add('mod_auth.c');

Apache::TestRunPerl->new->run(@ARGV);

t/startup.pl  view on Meta::CPAN

use lib qw(../blib/lib blib/lib lib t/lib);

1;



( run in 0.327 second using v1.01-cache-2.11-cpan-87723dcf8b7 )