File: 01_use.t

package info (click to toggle)
libtest-nobreakpoints-perl 0.17-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 188 kB
  • sloc: perl: 101; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 342 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use strict;
use warnings;

BEGIN {
    use Test::More;
    our $tests = 1;
    eval "use Test::NoWarnings";
    $tests++ unless ($@);
    plan tests => $tests;
}

use_ok('Test::NoBreakpoints');
local $Test::NoBreakpoints::VERSION = $Test::NoBreakpoints::VERSION || 'from repo';
note("List::Uniq $Test::NoBreakpoints::VERSION, Perl $], $^X");