From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
123456789 #!/usr/bin/env perluse strict;use warnings;use Test::LoadAllModules;BEGIN { all_uses_ok( search_path => 'App::DuckPAN', except => [ 'App::DuckPAN::Web' ] );}
#!/usr/bin/env perl
use
strict;
warnings;
Test::LoadAllModules;
BEGIN {
all_uses_ok(
search_path
=>
'App::DuckPAN'
,
except
=> [
'App::DuckPAN::Web'
] );
}