File: simple-require.t

package info (click to toggle)
libapp-cmd-perl 0.337-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 512 kB
  • sloc: perl: 1,722; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 400 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!perl
use strict;
use warnings;

use Test::More tests => 1;
use App::Cmd::Tester;

use lib 't/lib';

require Test::MySimple;

my $return = test_app(Test::MySimple->import, [ qw(bite the wax tadpole) ]);

# Horrible hack. -- rjbs, 2009-06-27
my $stdout = $return->stdout;
my $struct = eval $stdout;

is_deeply(
  $struct,
  [ { }, [ qw(bite the wax tadpole) ] ],
  "our simple app runs properly",
);