Skip to content
This repository has been archived by the owner on Mar 7, 2019. It is now read-only.

Commit

Permalink
Merge pull request #13 from alexrj/patch-1
Browse files Browse the repository at this point in the history
t/zz-example.t required ExtUtils::LibBuilder
  • Loading branch information
jberger committed Sep 23, 2012
2 parents a166a9d + 4aebfb9 commit b0a8e1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/zz-example.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use Test::More;

use File::chdir;

unless( eval { use ExtUtils::LibBuilder; 1 } ) {
unless( eval "use ExtUtils::LibBuilder; 1" ) {
plan skip_all => "libdontpanic requires ExtUtils::LibBuilder";
}

Expand Down

1 comment on commit b0a8e1d

@jberger
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will temporarily merge this in, though it doesn't seem that it should change anything. This entire test file is going to be removed soon in any case. It doesn't actually accomplish what is needed as-is. The replacement is going to be the modules Acme::Alien::DontPanic and Acme::Ford::Prefect which will depend on Alien::Base. The difference is that they will test an installed Alien::Base-based module, and in truth this is the only real metric that matters.

Still thanks for your interest!

Please sign in to comment.