restore Directory deletion, albeit without garbage collection
Tara L Andrews [Wed, 22 Feb 2012 14:20:42 +0000 (15:20 +0100)]
lib/Text/Tradition/Directory.pm
t/text_tradition_directory.t

index f01d19b..246d83f 100644 (file)
@@ -127,8 +127,7 @@ is( ref( $nt ), 'Text::Tradition', "Made new tradition" );
        is( scalar $f->tradition_ids, 1, "Object is deleted from index" );
 }
 
-SKIP: {
-       skip 'Have yet to figure out garbage collection', 1;
+{
        my $g = Text::Tradition::Directory->new( 'dsn' => $dsn );
        my $scope = $g->new_scope;
        is( scalar $g->tradition_ids, 1, "Now one object in new directory index" );
@@ -170,12 +169,13 @@ before [ qw/ store update insert delete / ] => sub {
        }
 };
 
-# If a tradition is deleted, remove it from the index.
-after delete => sub {
-       my $self = shift;
-       my $gc = KiokuDB::GC::Naive->new( backend => $self->directory->backend );
-       $self->directory->backend->delete( $gc->garbage->members );
-};
+# TODO Garbage collection doesn't work. Suck it up and live with the 
+# inflated DB.
+# after delete => sub {
+#      my $self = shift;
+#      my $gc = KiokuDB::GC::Naive->new( backend => $self->directory->backend );
+#      $self->directory->backend->delete( $gc->garbage->members );
+# };
 
 sub save {
        my $self = shift;
index 2e18c20..dd8eeec 100644 (file)
@@ -81,8 +81,7 @@ is( ref( $nt ), 'Text::Tradition', "Made new tradition" );
        is( scalar $f->tradition_ids, 1, "Object is deleted from index" );
 }
 
-SKIP: {
-       skip 'Have yet to figure out garbage collection', 1;
+{
        my $g = Text::Tradition::Directory->new( 'dsn' => $dsn );
        my $scope = $g->new_scope;
        is( scalar $g->tradition_ids, 1, "Now one object in new directory index" );