Disabled broken inflate/deflate.
David Jack Olrik [Fri, 9 Mar 2007 22:02:40 +0000 (22:02 +0000)]
Current now passes all tests again.
(DBIx::Class::InflateColumn::File is still broken)

lib/DBIx/Class/InflateColumn/File.pm

index b7bda60..65fb87f 100644 (file)
@@ -17,10 +17,14 @@ sub register_column {
     $self->inflate_column(
       $column =>
         {
-          inflate => $self->_inflate_file_column,
+          inflate => sub { 
+            my ($value, $obj) = @_;
+            #$self->_inflate_file_column;
+          },
           deflate => sub {
-              my ( $file, @column_names ) = $self->_load_file_column_information;
-              $self->_save_file_column( $file, $self, @column_names );
+            my ($value, $obj) = @_;
+            #my ( $file, @column_names ) = $self->_load_file_column_information;
+            #$self->_save_file_column( $file, $self, @column_names );
           },
         }
     );