File: export.t

package info (click to toggle)
libb-keywords-perl 1.29-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 140 kB
  • sloc: perl: 548; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 243 bytes parent folder | download | duplicates (3)
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";
}