The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

# Test Log::Log4perl or Log::Any::Adapter::Log4perl not being present.
#
$Poet::t::NoLog4perl::VERSION = '0.16';
use Test::Class::Most parent => 'Poet::Test::Class';
use Poet::Tools qw(read_file);
use strict;
sub test_no_log4perl : Tests {
my $self = shift;
my $poet = $self->initialize_temp_env();
my $error_file = $poet->logs_path("poet.log.ERROR");
ok( -f $error_file, "$error_file exists" );
like( read_file($error_file), qr/Could not load Log::Log4perl/ );
}
1;