The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package DBIx::Class::TestSchemaComponent;

use strict;
use warnings;

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;