in reply to What's in a Repo?
As I see it, though, it's difficult to skip a test that requires unavailable modules.
Not really:
#!/usr/bin/perl use strict; use warnings 'FATAL' => 'all'; use Test::More; BEGIN { if ( eval { require Cache::Memcached } ) { plan tests => 1; } else { plan skip_all => "Cache::Memcached is not installed"; } } { require_ok( 'My::Module' ); # or whatever you want to test }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: What's in a Repo?
by Xiong (Hermit) on Aug 07, 2010 at 13:17 UTC |