File: 01_compile.t

package info (click to toggle)
libfile-find-rule-perl-perl 1.13-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 232 kB
  • ctags: 125
  • sloc: perl: 1,712; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 221 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl

# Load testing for File::Find::Rule::Perl

use strict;
BEGIN {
	$|  = 1;
	$^W = 1;
}

use Test::More tests => 2;

use_ok( 'File::Find::Rule::Perl' );

ok( defined &find, 'Exported the expected symbol' );