Bug 18292: Remove return 1 statements in tests
[koha_ffzg] / t / db_dependent / Patron / Housebound.t
index 320dd61..b5024bc 100755 (executable)
@@ -6,7 +6,7 @@ use C4::Circulation;
 use Koha::Database;
 use Koha::Patrons;
 
-use Test::More tests => 6;
+use Test::More tests => 2;
 
 use_ok('Koha::Patron');
 
@@ -34,42 +34,5 @@ is(
     "Fetch housebound_profile."
 );
 
-# patron_choosers and patron_deliverers Tests
-
-# Current Patron Chooser / Deliverer count
-my $orig_del_count = Koha::Patrons->housebound_deliverers->count;
-my $orig_cho_count = Koha::Patrons->housebound_choosers->count;
-
-# We add one, just in case the above is 0, so we're guaranteed one of each.
-my $patron_chooser = $builder->build({ source => 'Borrower' });
-$builder->build({
-    source => 'BorrowerAttribute',
-    value  => {
-        borrowernumber => $patron_chooser->{borrowernumber},
-        code           => 'HSBND',
-        attribute      => 'CHO',
-        password       => undef,
-    },
-});
-
-my $patron_deliverer = $builder->build({ source => 'Borrower' });
-$builder->build({
-    source => 'BorrowerAttribute',
-    value  => {
-        borrowernumber => $patron_deliverer->{borrowernumber},
-        code           => 'HSBND',
-        attribute      => 'DEL',
-        password       => undef,
-    },
-});
-
-# Test housebound_choosers
-is(Koha::Patrons->housebound_choosers->count, $orig_cho_count + 1, "Correct count of choosers.");
-is(Koha::Patrons->housebound_deliverers->count, $orig_del_count + 1, "Correct count of deliverers");
-
-isa_ok(Koha::Patrons->housebound_choosers->next, "Koha::Patron");
-isa_ok(Koha::Patrons->housebound_deliverers->next, "Koha::Patron");
-
 $schema->storage->txn_rollback;
 
-1;