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

use strict;
BEGIN {
# ask for a recent DBIC version to skip the 5.6 tests as well
plan skip_all => 'Test temporarily requires DBIx::Class'
unless eval { require DBIx::Class::Storage::Statistics; DBIx::Class->VERSION('0.08124') };
plan skip_all => 'Test does not properly work with the pre-0.082800 DBIC trials'
if DBIx::Class->VERSION =~ /^0.082700\d\d/;
}
my $cap;
open my $fh, '>', \$cap;
my $pp = DBIx::Class::Storage::Debug::PrettyPrint->new({
show_progress => 1,
clear_line => 'CLEAR',
executing => 'GOGOGO',
});
$pp->debugfh($fh);
$pp->query_start('SELECT * FROM frew WHERE id = 1');
is(
$cap,
qq(SELECT * FROM frew WHERE id = 1 : \nGOGOGO),
'SQL Logged'
);
$pp->query_end('SELECT * FROM frew WHERE id = 1');
is(
$cap,
qq(SELECT * FROM frew WHERE id = 1 : \nGOGOGOCLEAR),
'SQL Logged'
);
done_testing;