File: export.t

package info (click to toggle)
libb-keywords-perl 1.27-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 136 kB
  • sloc: perl: 542; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 243 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
# -*- perl -*-

use warnings;
use strict;
use Test::More tests => 7;

use B::Keywords ":all";

for my $name (qw(Scalars Arrays Hashes Filehandles Symbols Functions Barewords)) {
    no strict 'refs';
    ok @{$name}, ":all exports \@$name";
}