From: rkinyon@cpan.org Date: Wed, 11 Jun 2008 12:01:09 +0000 (+0000) Subject: Added requirement for FileHandle::Fmode to t/44 in response to a failling CPANTS... X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a915f70850f4b74f20bef19cf4f5b9fce9021ac8;p=dbsrgits%2FDBM-Deep.git Added requirement for FileHandle::Fmode to t/44 in response to a failling CPANTS test git-svn-id: http://svn.ali.as/cpan/trunk/DBM-Deep@3563 88f4d9cd-8a04-0410-9d60-8f63309c3137 --- diff --git a/t/44_upgrade_db.t b/t/44_upgrade_db.t index 310456f..47ce1ce 100644 --- a/t/44_upgrade_db.t +++ b/t/44_upgrade_db.t @@ -10,10 +10,10 @@ BEGIN { plan skip_all => "Skipping the upgrade_db.pl tests on *bsd for now." if ( $^O =~ /bsd/i ); - my @failures; eval { use Pod::Usage 1.3; }; push @failures, 'Pod::Usage' if $@; eval { use IO::Scalar; }; push @failures, 'IO::Scalar' if $@; + eval { use FileHandle::Fmode; }; push @failures, 'FileHandle::Fmode' if $@; if ( @failures ) { my $missing = join ',', @failures; plan skip_all => "'$missing' must be installed to run these tests";