From ee96d18b2cee07aa64d5e68078bc898d36e22146 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 6 Dec 2018 12:52:54 -0300 Subject: [PATCH] Bug 21910: Remove duplicated lines in tests Signed-off-by: Jonathan Druart Signed-off-by: Nick Clemens --- t/db_dependent/LibraryGroups.t | 8 -------- 1 file changed, 8 deletions(-) diff --git a/t/db_dependent/LibraryGroups.t b/t/db_dependent/LibraryGroups.t index 02d20651e1..eb800dd1ad 100644 --- a/t/db_dependent/LibraryGroups.t +++ b/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(); -- 2.20.1