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