Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for the cpanfile "mirror" values #473

Open
wants to merge 8 commits into
base: devel
Choose a base branch
from
Prev Previous commit
Next Next commit
add tests for with/without configure when reading deps from META.yaml
Aaron Moses committed Jan 11, 2016
commit a301e9240658adb999936868b7459a92509938b1
6 changes: 6 additions & 0 deletions xt/recommends.t
Original file line number Diff line number Diff line change
@@ -31,4 +31,10 @@ like last_build_log, qr/Checking if you have Test::Pod/;
run_L '--with-develop', '--without-develop', './testdist/TestDist-Recommend';
unlike last_build_log, qr/Checking if you have Hash::MultiValue/;

run_L '--with-configure', './testdist/TestDist-Recommend';
like last_build_log, qr/Checking if you have Module::Build::Tiny/;

run_L '--with-configure', '--without-configure', './testdist/TestDist-Recommend';
unlike last_build_log, qr/Checking if you have Module::Build::Tiny/;

done_testing;