File: tag.t

package info (click to toggle)
libdevel-pragma-perl 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 368 kB
  • ctags: 818
  • sloc: perl: 449; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env perl

use strict;
use warnings;

use Test::More tests => 5;
use Devel::Pragma qw(:all);

ok(defined &ccstash, 'ccstash is exported by :all');
ok(defined &scope, 'scope is exported by :all');
ok(defined &new_scope, 'new_scope is exported by :all');
ok(defined &hints, 'hints is exported by :all');
ok(defined &fqname, 'fqname is exported by :all');