File: 1_loadme.t

package info (click to toggle)
libhttp-dav-perl 0.31-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 384 kB
  • ctags: 251
  • sloc: perl: 3,453; xml: 90; makefile: 41; sh: 20
file content (18 lines) | stat: -rw-r--r-- 238 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/local/bin/perl -w
use strict;
use Test;
use lib 't';
use TestDetails ();

BEGIN {
    plan tests => 1;

    $SIG{__WARN__} = sub {
       ok(0);
       exit;
    }
}

# Check that we compile without warnings.
use HTTP::DAV;
ok(1);