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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
#!/usr/bin/perl
# Adding of entire directories
use strict;
BEGIN {
$| = 1;
$^W = 1;
}
use Class::Autouse ':devel';
use File::Spec::Functions ':ALL';
use File::Remove 'remove';
use Test::More tests => 9;
use Test::Inline ();
# Change to the correct directory
chdir catdir( 't', 'data', '06_multifile' ) or die "Failed to change to test directory";
# Create the Test::Inline object
ok( -d 't', 'Output directory exists' );
my $manifest = 't.manifest';
my $Inline = Test::Inline->new(
output => 't',
manifest => $manifest,
);
isa_ok( $Inline, 'Test::Inline' );
# Add the files
my $rv = $Inline->add( 'lib' );
is( $rv, 3, 'Adding lib results in 3 added scripts' );
# Save the file
my $out1 = catfile( 't', 'test_one.t' );
my $out3 = catfile( 't', 'test_three.t' );
my $out4 = catfile( 't', 'test_four.t' );
is( $Inline->save, 3, '->save returns 3 as expected' );
ok( -f $out1, 'Found test_one.t' );
ok( -f $out3, 'Found test_three.t' );
ok( -f $out4, 'Found test_four.t' );
ok( -f $manifest, 'Found manifest file' );
# Check the contents of the manifest
my $manifest_content = <<'END_MANIFEST';
t/test_four.t
t/test_one.t
t/test_three.t
END_MANIFEST
if ( $^O eq 'MSWin32' or $^O eq 'cygwin' ) {
$manifest_content =~ s/\//\\/g;
}
is( $Inline->manifest, $manifest_content, 'manifest contains expected content' );
END {
remove($out1) if -f $out1;
remove($out3) if -f $out3;
remove($out4) if -f $out4;
remove($manifest) if -f $manifest;
}
|