File: 02_installed_only.t

package info (click to toggle)
libfile-sharedir-projectdistdir-perl 1.000004-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 400 kB
  • ctags: 22
  • sloc: perl: 442; makefile: 2
file content (49 lines) | stat: -rw-r--r-- 1,068 bytes parent folder | download | duplicates (2)
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
47
48
49

use strict;
use warnings;

use Test::More 0.96;
use FindBin;
use lib 't/lib';
use FakeFS;
my $fake;

BEGIN {
  $fake = FakeFS->new( root => "$FindBin::Bin/02_files" );
  $fake->add_file( 'develdir/.devdir'                               => q[] );
  $fake->add_file( 'develdir/share/file'                            => qq[03\n] );
  $fake->add_file( 'installdir/lib/auto/share/dist/Example_02/file' => q[02] );
  $fake->add_file( 'develdir/lib/Example_03.pm'                     => <<'EOF_A');
use strict;
use warnings;

package Example_03;

1;
EOF_A
  $fake->add_file( 'installdir/lib/Example_02.pm' => <<'EOF_B');
use strict;
use warnings;

package Example_02;

use File::ShareDir::ProjectDistDir;

use Path::Tiny qw(path);

sub test {
  return scalar path( dist_file( 'Example_02', 'file' ) )->slurp();
}

1;
EOF_B
}
use lib "$FindBin::Bin/02_files/installdir/lib";
use lib "$FindBin::Bin/02_files/develdir/lib";    # simulate testing in a child project.

use Example_02;

is( Example_02->test(), '02', 'Example 02 returns the right shared value' );

done_testing;