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