File: 008_export_ok.t

package info (click to toggle)
libfile-util-perl 4.201720-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 840 kB
  • sloc: perl: 4,353; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 275 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

use strict;
use warnings;
use Test::More;
use Test::NoWarnings;

use lib './lib';

use File::Util;

plan tests => ( scalar @File::Util::EXPORT_OK ) + 1;

map
{
   ok ref UNIVERSAL::can('File::Util', $_) eq 'CODE',
      "can do exported $_"
} @File::Util::EXPORT_OK;

exit;