#!perl

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2021-02-26'; # DATE
our $DIST = 'Test-Module-Features'; # DIST
our $VERSION = '0.002'; # VERSION

use 5.010;
use strict;
use warnings;

use Getopt::Long qw(:config bundling no_ignore_case auto_help auto_version);
use Test::Module::Features;

my %opts = (
    #exclude_packages => [],
    #test_examples => 1,
);
GetOptions(
    #'exclude-package=s' => $opts{exclude_packages},
    #'E' => sub { $opts{test_examples} = 0 },
);

module_features_in_all_modules_ok(
    \%opts,
);

1;
# ABSTRACT: Test feature set specification and features declaration in all modules of your distro
# PODNAME: test-module-features

__END__

=pod

=encoding UTF-8

=head1 NAME

test-module-features - Test feature set specification and features declaration in all modules of your distro

=head1 VERSION

This document describes version 0.002 of test-module-features (from Perl distribution Test-Module-Features), released on 2021-02-26.

=head1 SYNOPSIS

In your distro directory:

 % test-module-features [options]

=head1 DESCRIPTION

This script is a command-line interface for L<Test::Module::Features>'s
C<module_features_in_all_modules_ok()> function.

=head1 OPTIONS

=over

=back

=head1 HOMEPAGE

Please visit the project's homepage at L<https://metacpan.org/release/Test-Module-Features>.

=head1 SOURCE

Source repository is at L<https://github.com/perlancar/perl-Test-Module-Features>.

=head1 BUGS

Please report any bugs or feature requests on the bugtracker website L<https://github.com/perlancar/perl-Test-Module-Features/issues>

When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.

=head1 SEE ALSO

L<Test::Module::Features>

=head1 AUTHOR

perlancar <perlancar@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2021 by perlancar@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.

=cut
