File: 01-load-with-exclude.t

package info (click to toggle)
libtest-dependencies-perl 0.34-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 156 kB
  • sloc: perl: 229; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 266 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!perl

use Test::Builder::Tester;
use Test::More;


BEGIN {
  test_out("ok 1 - use Test::Dependencies;");
  use_ok( 'Test::Dependencies', 'exclude',
          [qw/Some::Namespace Some::Other::Namespace/] );
  test_test("use Test::Dependencies;");
}

done_testing;