ResultSetInstance is now a component on DB, some test cleanup
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / UUIDColumns.pm
index 63df67b..2d951e3 100644 (file)
@@ -24,9 +24,7 @@ Note that the component needs to be loaded before Core.
 
 =head1 METHODS
 
-=over 4
-
-=item uuid_columns
+=head2 uuid_columns
 
 =cut
 
@@ -41,6 +39,7 @@ sub uuid_columns {
 
 sub insert {
     my ($self) = @_;
+    warn "Got here";
     for my $column (@{$self->uuid_auto_columns}) {
        $self->store_column( $column, $self->get_uuid )
            unless defined $self->get_column( $column );
@@ -52,8 +51,6 @@ sub get_uuid {
     return Data::UUID->new->to_string(Data::UUID->new->create),
 }
 
-=back
-
 =head1 AUTHORS
 
 Chia-liang Kao <clkao@clkao.org>