File: 00-load.t

package info (click to toggle)
libhttp-exception-perl 0.04007-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 300 kB
  • sloc: perl: 232; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 429 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;

use Test::More;

BEGIN {
    use_ok 'HTTP::Exception::1XX';
    use_ok 'HTTP::Exception::2XX';
    use_ok 'HTTP::Exception::3XX';
    use_ok 'HTTP::Exception::4XX';
    use_ok 'HTTP::Exception::5XX';
    use_ok 'HTTP::Exception::Base';
    use_ok 'HTTP::Exception';
}

# use_ok 'HTTP::Exception::Loader' removed because it emits redefined
# warnings, it's not recommended to use Loader directly anyway

done_testing;