implement schema_base_class for dynamic schemas
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / lib / DBIx / Class / TestSchemaComponent.pm
CommitLineData
1fe6af07 1package DBIx::Class::TestSchemaComponent;
2
cc15b78f 3use strict;
4use warnings;
5
6our $test_component_ok = 0;
7
8sub connection {
9 my ($self, @info) = @_;
10
11 $test_component_ok = 1;
12
13 return $self->next::method(@info);
14}
15
1fe6af07 16sub dbix_class_testschemacomponent { 'dbix_class_testschemacomponent works' }
17
181;