Skip to content

Commit

Permalink
skip Test::Builder::Tester if not installed
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.parrot.org/parrot/trunk@12072 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
Leopold Toetsch committed Mar 29, 2006
1 parent 4a7a1cb commit 5a34bf5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion t/perl/Parrot_Test.t
Expand Up @@ -5,7 +5,13 @@
use strict;
use warnings;
use lib qw( . lib ../lib ../../lib );
use Test::Builder::Tester;
BEGIN {
eval "use Test::Builder::Tester;";
if ($@) {
print "1..0 # Skip Test::Builder::Tester not installed\n";
exit 0;
}
}
use Test::More;


Expand Down

0 comments on commit 5a34bf5

Please sign in to comment.