Subject: | With force_plugins, load_files() does NOT fail when plugin is not installed |
For example, Config::Any::INI requires Config::Tiny, but when Config::Tiny is NOT installed, the following code doesn't crash (as I would expect) :
use Config::Any;
my @plugins = ('Config::Any::INI');
my $cfg = Config::Any->load_files( {files => \@filepaths, force_plugins => \@plugins} );
More information here :
https://perlmonks.org/?node_id=11107308