The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678910111213 package DBICNSTest::Rslt::A;use warnings;use strict;use base qw/DBIx::Class::Core/;__PACKAGE__->table('a');__PACKAGE__->add_columns('a');# part of a test, do not remove$_ = 'something completely utterly bogus';1;
package
DBICNSTest::Rslt::A;
use
warnings;
strict;
base
qw/DBIx::Class::Core/
;
__PACKAGE__->table(
'a'
);
__PACKAGE__->add_columns(
# part of a test, do not remove
$_
=
'something completely utterly bogus'
1;