File: apache-filter.t

package info (click to toggle)
libhtml-mason-perl 1%3A1.54-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,704 kB
  • ctags: 662
  • sloc: perl: 8,453; sh: 49; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 492 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

BEGIN {
  unless ($ENV{AUTHOR_TESTING}) {
    require Test::More;
    Test::More::plan(skip_all => 'these tests are for testing by the author');
  }
}

use strict;
use warnings;

use File::Spec;
use lib 'lib', File::Spec->catdir( 't', 'lib' );

use Mason::ApacheTest qw( require_libapreq require_apache_filter );

require_libapreq();
require_apache_filter();

Mason::ApacheTest->run_tests(
    apache_define => 'filter_tests',
    with_handler  => 0,
    test_sets     => [qw( filter )],
);