1#!/usr/bin/perl -w 2 3BEGIN { 4 unshift @INC, 't/lib'; 5} 6 7use strict; 8use warnings; 9use lib 't/lib'; 10use Test::More tests => 1; 11use File::Spec; 12use App::Prove; 13 14my $prove = App::Prove->new; 15 16$prove->add_rc_file( 17 File::Spec->catfile( 18 't', 'data', 19 'proverc' 20 ) 21); 22 23is_deeply $prove->{rc_opts}, 24 [ '--should', 'be', '--split', 'correctly', 'Can', 'quote things', 25 'using single or', 'double quotes', '--this', 'is', 'OK?' 26 ], 27 'options parsed'; 28 29