in reply to trouble installing Class::DBI::Loader::Oracle

t/00-load.t ....... Dubious, test returned 1 (wstat 256, 0x100) t/01-basic.t ...... ok t/pod-coverage.t .. skipped: Test::Pod::Coverage 1.04 required for tes +ting POD coverage t/pod.t ........... ok

You'll notice t/01-basic.t was not skipped, and it passed all tests. So you can ignore the failure of 00-load.t, and force install Class::DBI::Loader::Oracle.

If you compare t/01-basic.t and t/00-load.t , you can see that missing from Class/DBI/Loader/Oracle.pm is

use DBD::Oracle; use Class::DBI::Oracle; use Class::DBI::Loader;

Replies are listed 'Best First'.
Re^2: trouble installing Class::DBI::Loader::Oracle
by hnhegde (Novice) on Jun 04, 2010 at 19:33 UTC
    Thanks Folks. I was able to force install it and get working.
      The attached patch to Class::DBI:Loader::Oracle resolves the issue. Class-DBI-Loader-Oracle : make test cp lib/Class/DBI/Loader/Oracle.pm blib/lib/Class/DBI/Loader/Oracle.pm PERL_DL_NONLAZY=1 "/usr/bin/perl.exe" "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harness::Switches; test_harness(0, 'blib/lib', 'blib/arch')" t/*.t t/00-load.t ....... ok t/01-basic.t ...... ok t/pod-coverage.t .. skipped: Test::Pod::Coverage 1.04 required for testing POD coverage t/pod.t ........... skipped: Test::Pod 1.14 required for testing POD All tests successful. Files=4, Tests=7, 2 wallclock secs ( 0.09 usr 0.02 sys + 0.40 cusr 0.20 csys = 0.71 CPU) Result: PASS ==== patch - start ==== *** lib/Class/DBI/Loader/Oracle.pm~ 2008-02-19 18:33:26.000000000 -0500 --- lib/Class/DBI/Loader/Oracle.pm 2014-12-04 14:00:57.523394700 -0500 *************** *** 4,9 **** --- 4,10 ---- use strict; use DBI; use Carp; + use Class::DBI; require Class::DBI::Oracle; use base 'Class::DBI::Loader::Generic'; use vars '$VERSION'; ==== patch - end ====