File: 101_import.t

package info (click to toggle)
libtest-regexp-perl 2017040101-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 224 kB
  • ctags: 30
  • sloc: perl: 1,331; makefile: 2
file content (17 lines) | stat: -rwxr-xr-x 190 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl

use strict;
use warnings;

use Test::More 'no_plan';

BEGIN {
    use_ok 'Test::Regexp', import => [qw [no_match]];
}


ok !defined &match;
ok  defined &no_match;


__END__