forked from miyagawa/cpanminus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix prereq to META conversion for perl 5.10 with Module::Build 0.34 (…
…which doesn't emit MYMETA)
- Loading branch information
Showing
2 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
use strict; | ||
use xt::Run; | ||
use Test::More; | ||
|
||
plan skip_all => "only on 5.10.1" if $] != 5.010001; | ||
|
||
run '-n', 'Module::[email protected]'; | ||
like last_build_log, qr/installed Module-Build/; | ||
|
||
run 'Hook::LexWrap'; | ||
unlike last_build_log, qr/Failed to upconvert metadata/; | ||
|
||
done_testing; | ||
|
||
|
||
|