https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32030
Jonathan Druart <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |additional_work_needed --- Comment #31 from Jonathan Druart <[email protected]> --- TestBuilder.t is failing on ERM::User::Roles, it's missing a primary key on erm_user_roles I think Can be tested with: use t::lib::TestBuilder; my $builder = t::lib::TestBuilder->new; my $m = 'Koha::ERM::UserRoles'; eval "require $m"; my $object = $builder->build_object( { class => $m } ); say ref($object); Should display "Koha::ERM::UserRole", not be empty -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
