File: global.t

package info (click to toggle)
libfile-fu-perl 0.0.7-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 244 kB
  • ctags: 165
  • sloc: perl: 1,421; makefile: 2
file content (14 lines) | stat: -rwxr-xr-x 246 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use warnings;
use strict;

use Test::More qw(no_plan);

use File::Fu;

is(File::Fu->program_name->relative, 't/global.t');
is(File::Fu->program_dir->relative, 't/');
is(File::Fu->THIS_FILE, 't/global.t');

# vim:ts=2:sw=2:et:sta