Bug 18501: (follow-up) Remove duplicate test
[koha.git] / t / db_dependent / Items.t
index 010b41e..3da406a 100755 (executable)
@@ -33,7 +33,7 @@ use Koha::AuthorisedValues;
 use t::lib::Mocks;
 use t::lib::TestBuilder;
 
-use Test::More tests => 15;
+use Test::More tests => 14;
 
 use Test::Warn;
 
@@ -126,31 +126,6 @@ subtest 'General Add, Get and Del tests' => sub {
     $schema->storage->txn_rollback;
 };
 
-subtest 'ModItem tests' => sub {
-    plan tests => 6;
-
-    $schema->storage->txn_begin;
-
-    my $builder = t::lib::TestBuilder->new;
-    my $item    = $builder->build_sample_item();
-
-    my @fields = qw( itemlost withdrawn damaged );
-    for my $field (@fields) {
-        my $field_on = $field."_on";
-
-        $item->$field(1)->store;
-        $item->discard_changes;
-        is( output_pref({ str => $item->$field_on, dateonly => 1 }), output_pref({ dt => dt_from_string(), dateonly => 1 }), "When updating $field, $field_on is updated" );
-
-        $item->$field(0)->store;
-        $item->discard_changes;
-        is( $item->$field_on, undef, "When clearing $field, $field_on is cleared" );
-    }
-
-    $schema->storage->txn_rollback;
-
-};
-
 subtest 'ModItemTransfer tests' => sub {
     plan tests => 8;