Browse Source

Bug 21910: Remove duplicated lines in tests

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
19.05.x
Jonathan Druart 6 years ago
committed by Nick Clemens
parent
commit
ee96d18b2c
  1. 8
      t/db_dependent/LibraryGroups.t

8
t/db_dependent/LibraryGroups.t

@ -122,14 +122,6 @@ subtest 'Koha::Library::Group->get_search_groups' => sub {
is_deeply( $groups[0]->unblessed, $groupA->unblessed, 'Get search groups opac should return enabled group' );
@groups = Koha::Library::Groups->get_search_groups({ interface => 'staff' });
is_deeply( $groups[0]->unblessed, $groupB->unblessed, 'Get search groups staff should return enabled group' );
# TODO This is not implemented because not used yet
# ->has_child only works with libraries
#is( $groupA->has_child( $groupA1 ), 1, 'groupA1 should be condidered as a child of groupA' );
# FIXME At the time of writing this test fails because the ->children methods does not return more than 1 level of depth
# See Bug 15707 comments 166-170+
#is( $groupA->has_child( $groupA1_library2->branchcode ), 1, 'groupA1_library2 should be considered as a child of groupA (it is a grandchild)' );
};
my $groupX = Koha::Library::Group->new( { title => "Group X" } )->store();

Loading…
Cancel
Save