File: 06-base-subdir-subonly.t

package info (click to toggle)
libfindbin-libs-perl 1.64-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 180 kB
  • sloc: perl: 389; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 197 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
package Testophile;

use v5.8;

use FindBin qw( $Bin );

use FindBin::libs qw( base=lib subdir=FindBin subonly );

use Test::More tests => 1;

ok $INC[0] =~ m{/lib/FindBin $}x, "$INC[0]";

__END__