File: 06_cwd_simple.t

package info (click to toggle)
libtest-file-sharedir-perl 1.000005-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 440 kB
  • ctags: 45
  • sloc: perl: 505; makefile: 2
file content (46 lines) | stat: -rw-r--r-- 672 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46

use strict;
use warnings;

use Test::More 0.96;
use Test::Fatal;
use FindBin;
use Cwd qw(chdir getcwd);
my $prevcwd;

use lib "$FindBin::Bin/../lib";

BEGIN {
  $prevcwd = getcwd;
  chdir "$FindBin::Bin/06_files";
}

use Test::File::ShareDir::Module { 'Example' => 'share' };

BEGIN {
  chdir $prevcwd;
}

use lib "$FindBin::Bin/06_files/lib";

use Example;

use File::ShareDir qw( module_dir module_file );

is(
  exception {
    note module_dir('Example');
  },
  undef,
  'module_dir doesn\'t bail as it finds the dir'
);

is(
  exception {
    note module_file( 'Example', 'afile' );
  },
  undef,
  'module_file doesn\'t bail as it finds the file'
);

done_testing;