Provided by: libtest-file-sharedir-perl_1.001002-1_all bug

NAME

       Test::File::ShareDir::Utils - Simple utilities for File::ShareDir testing

VERSION

       version 1.001002

SYNOPSIS

         use Test::File::ShareDir::Utils qw( extract_dashes );

         my $hash = extract_dashes('dists', $oldhash );

EXPORTABLE FUNCTIONS

   extract_dashes
       A utility that helps transform:

         -opt_a => bar
         -opt_b => baz
         NameA  => NameAValue
         NameB  => NameBValue

       Into

         opt_a => bar
         opt_b => baz
         modules => {
           NameA => NameAValue
           NameB => NameBValue
         }

       This is a useful approach used all over import and functional style interfaces due to
       explicit configuration being needed only on rare occasions.

AUTHOR

       Kent Fredric <kentnl@cpan.org>

COPYRIGHT AND LICENSE

       This software is copyright (c) 2017 by Kent Fredric <kentnl@cpan.org>.

       This is free software; you can redistribute it and/or modify it under the same terms as
       the Perl 5 programming language system itself.