File: tag.t

package info (click to toggle)
libdevel-pragma-perl 0.54-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 448 kB
  • sloc: perl: 747; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 428 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env perl

use strict;
use warnings;

use Test::More tests => 6;
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 &my_hints, 'my_hints is exported by :all');
ok(defined &fqname, 'fqname is exported by :all');
ok(defined &on_require, 'on_require is exported by :all');