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
|
#!/usr/bin/perl -w
BEGIN {
if ( $ENV{PERL_CORE} ) {
chdir 't';
@INC = ( '../lib', 'lib' );
}
else {
unshift @INC, 't/lib';
}
}
use strict;
use lib 't/lib';
use Test::More tests => 1;
use File::Spec;
use App::Prove;
my $prove = App::Prove->new;
$prove->add_rc_file(
File::Spec->catfile(
( $ENV{PERL_CORE}
? ( File::Spec->updir(), 'ext', 'Test', 'Harness' )
: ()
),
't', 'data',
'proverc'
)
);
is_deeply $prove->{rc_opts},
[ '--should', 'be', '--split', 'correctly', 'Can', 'quote things',
'using single or', 'double quotes', '--this', 'is', 'OK?'
],
'options parsed';
|