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

use strict;
our $test_component_ok = 0;
sub connection {
my ($self, @info) = @_;
$test_component_ok++;
return $self->next::method(@info);
}
sub dbix_class_testschemacomponent { 'dbix_class_testschemacomponent works' }
1;