Bug 15052: Add diagnostic for the TestBuilder tests
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 23 Oct 2015 08:32:18 +0000 (09:32 +0100)
committerTomas Cohen Arazi <tomascohen@theke.io>
Fri, 23 Oct 2015 12:35:13 +0000 (09:35 -0300)
commit57f5332b63f2bc6b7728a4429d37f3de6d46d6ae
treeffe424f6a06a60e416ed0defc39bf8c8745e3815
parentf173c896f2283ee338585e332130af7b1428bf98
Bug 15052: Add diagnostic for the TestBuilder tests

Sometimes t/db_dependent/TestBuilder.t fails with 'TestBuilder can
create a entry for every sources' but we don't know which ones have
failed.

Test plan:
Create the following file: Koha/Schema/Result/Test.pm
 package Koha::Schema::Result::Test;
 use base 'DBIx::Class::Core';
 __PACKAGE__->table("test");
 1;

If you don't have a table named 'test' in your DB,
  prove t/db_dependent/TestBuilder.t
should return a failure, but without any explanation.
With this patch you should get a diag and know what's wrong.

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
t/db_dependent/TestBuilder.t