File: 1-basic.t

package info (click to toggle)
libmodule-signature-perl 0.63-1%2Bsqueeze2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze-lts
  • size: 424 kB
  • ctags: 249
  • sloc: perl: 2,384; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 187 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl

use strict;
use Test::More tests => 2;

use_ok('Module::Signature');
Module::Signature->import('SIGNATURE_OK');
ok(defined(&SIGNATURE_OK), 'constant exported');

__END__