From 2110e26f22eda35d0be4490b5c57617b01fd4576 Mon Sep 17 00:00:00 2001 From: august-18 <39630066+august-18@users.noreply.github.com> Date: Mon, 29 Aug 2022 03:08:51 -0700 Subject: [PATCH] Update functions.qmd (#1080) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "As you write more and more functions you’ll eventually want to convert these informal, interactive tests into formal, automated tests. That process is called unit testing. Unfortunately, it’s beyond the scope of this book, but you can learn about it in http://r-pkgs.had.co.nz/tests.html." Link gives 404 error for page not found I updated to https://r-pkgs.org/testing-basics.html --- functions.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.qmd b/functions.qmd index 143a560..91cc421 100644 --- a/functions.qmd +++ b/functions.qmd @@ -122,7 +122,7 @@ rescale01(c(1, 2, 3, NA, 5)) As you write more and more functions you'll eventually want to convert these informal, interactive tests into formal, automated tests. That process is called unit testing. -Unfortunately, it's beyond the scope of this book, but you can learn about it in . +Unfortunately, it's beyond the scope of this book, but you can learn about it in . We can simplify the original example now that we have a function: