Add repository resource to all the MI Makefile.PLs
[p5sagit/Config-Any.git] / t / 65-force_plugins.t
CommitLineData
5d3ad6eb 1use strict;
2use warnings;
3
4use Test::More tests => 2;
5
6use Config::Any;
7
8{
9 my $result = eval {
10 Config::Any->load_files(
11 { files => [ 't/conf/conf.pl' ], force_plugins => [ 'Config::Any::Perl' ] } );
12 };
13
14 ok( $result, 'config loaded' );
15 ok( !$@, 'no error thrown' );
16}