}
sub insert {
- my ($self) = @_;
+ my $self = shift;
for my $column (@{$self->uuid_auto_columns}) {
$self->store_column( $column, $self->get_uuid )
unless defined $self->get_column( $column );
}
- $self->next::method;
+ $self->next::method(@_);
}
sub get_uuid {
--- /dev/null
+use Test::More;
+use lib qw(t/lib);
+use DBICTest;
+use DBICTest::BasicRels;
+
+require "t/run/19uuid.tl";
+run_tests(DBICTest->schema);