http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15150 --- Comment #1 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Created attachment 44559 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=44559&action=edit Bug 15150: Make t/ tests skip if Test::DBIx::Class absent Tests in t/ should always pass for building the Debian packages for Koha. But we've started using Test::DBIx::Class for writing mocked tests, and that lib is not (yet) packaged fro Debian 7+. This means build is failing. Devs and jenkins use the lib from CPAN. This patch makes the tests skip if the lib is absent. To test: - Install Test::DBIx::Class $ sudo cpanm Test::DBIx::Class - Run the tests: $ prove t/ => SUCCESS: Tests pass - Uninstall Test::DBIx::Class $ sudo cpan -U Test::DBIx::Class - Run the tests: $ prove t/ => SUCCESS: Tests still pass (those needing the lib are skipped) - Sign off :-D -- You are receiving this mail because: You are watching all bug changes.