summaryrefslogtreecommitdiff
path: root/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/FAQ.pod
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2022-12-25 12:27:09 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2022-12-25 12:27:09 +0000
commitec6ac1d565a7f304820bd5a592418cc94d96f91d (patch)
treee074c68bf951e3a93eec20c6705600c861105d5a /cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/FAQ.pod
parentd0e654bb3e083eaf333adea18f5ca3591fee4cce (diff)
downloadperl-ec6ac1d565a7f304820bd5a592418cc94d96f91d.tar.gz
Update ExtUtils-MakeMaker to CPAN version 7.66
[DELTA] 7.66 Sun 25 Dec 08:47:54 GMT 2022 No changes since v7.65_03 7.65_03 Sat 24 Dec 00:14:35 GMT 2022 Bug fixes: - Reverted "Return hint file loading to quoted eval" introduced with v7.47_11 - Implement tempdir() logic for parallel tests 7.65_02 Fri 22 Jul 13:44:57 BST 2022 Bug fixes: - Don't use rpath for macOS <= 10.4 - Only include existent directories in libpath - Silence spurious warning when a postamble returns undef 7.65_01 Mon 30 May 10:44:31 BST 2022 Doc fixes: - use Test::More rather than Test.pm in FAQ example - fix typos using WriteMakeFile rather than WriteMakefile
Diffstat (limited to 'cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/FAQ.pod')
-rw-r--r--cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/FAQ.pod7
1 files changed, 3 insertions, 4 deletions
diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/FAQ.pod b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/FAQ.pod
index 1184841ecb..61c7923b07 100644
--- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/FAQ.pod
+++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/FAQ.pod
@@ -1,6 +1,6 @@
package ExtUtils::MakeMaker::FAQ;
-our $VERSION = '7.64';
+our $VERSION = '7.66';
$VERSION =~ tr/_//d;
1;
@@ -129,7 +129,7 @@ Let's take the following test directory structure:
t/bar/othertest.t
t/bar/baz/anothertest.t
-Now, inside of the C<WriteMakeFile()> function in your F<Makefile.PL>, specify
+Now, inside of the C<WriteMakefile()> function in your F<Makefile.PL>, specify
where your tests are located with the C<test> directive:
test => {TESTS => 't/*.t t/*/*.t t/*/*/*.t'}
@@ -536,8 +536,7 @@ And of course a very basic test:
t/cool.t:
--------
- use Test;
- BEGIN { plan tests => 1 };
+ use Test::More tests => 1;
use Cool::Foo;
use Cool::Bar;
Cool::Foo::perl_rules();