From c3f39abdeab8c860003833399f5895f9f5347b34 Mon Sep 17 00:00:00 2001 From: jonasbn Date: Sat, 31 Aug 2024 09:09:29 +0200 Subject: [PATCH] Activated some more links in the TIL on Test::Compile --- cpan/test-compile.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cpan/test-compile.md b/cpan/test-compile.md index f32d491..d9a2a7c 100644 --- a/cpan/test-compile.md +++ b/cpan/test-compile.md @@ -1,10 +1,10 @@ # Test::Compile -Test::Compile is a nice module to test the compilation of all the modules and scripts in a distribution. It is a good practice to include a test script that checks the compilation of all the modules in a distribution. This is a simple way to catch syntax errors and other compilation errors before the distribution is installed. +[Test::Compile][METACPAN] is a nice module to test the compilation of all the modules and scripts in a distribution. It is a good practice to include a test script that checks the compilation of all the modules in a distribution. This is a simple way to catch syntax errors and other compilation errors before the distribution is installed. And you can with luck use it in a CI/CD pipeline to catch errors before they are deployed. -This is the common way to use Test::Compile: +This is the common way to use [Test::Compile][METACPAN]. ```perl #!perl @@ -95,4 +95,6 @@ The recommendation is to put the Test::Compile test in the `t/` directory and na ## Resources and References -- [MetaCPAN: Test::Compile](https://metacpan.org/pod/Test::Compile) +- [MetaCPAN: Test::Compile][METACPAN] + +[METACPAN]: https://metacpan.org/pod/Test::Compile \ No newline at end of file