Added POD section about known issues
[p5sagit/App-FatPacker.git] / t / line.t
CommitLineData
56a51caa 1#!perl
2use strict;
3use warnings FATAL => 'all';
4use Test::More tests => 3;
5use File::Temp qw/tempdir/;
6use File::Spec;
7
8BEGIN { use_ok "App::FatPacker", "" }
9
10chdir 't/line';
11
12my $fp = App::FatPacker->new;
13my $temp_fh = File::Temp->new;
14select $temp_fh;
15$fp->script_command_file([ 'line-test.pl' ]);
16select STDOUT;
17close $temp_fh;
18
19# make sure we don't pick up things from our created dir
20chdir File::Spec->tmpdir;
21
22# Packed, now try using it. This should run the tests inside t/line/a.pm
23do $temp_fh;