From c446b59e675aeff08ff7205b05f06cd81bf6dc68 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Wed, 27 Feb 2019 08:06:59 +0100 Subject: Fix CAKE export test to actually work Also test the model specification via the link argument --- tests/testthat/test_CAKE_export.R | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests/testthat/test_CAKE_export.R') diff --git a/tests/testthat/test_CAKE_export.R b/tests/testthat/test_CAKE_export.R index 5f984782..23b424fc 100644 --- a/tests/testthat/test_CAKE_export.R +++ b/tests/testthat/test_CAKE_export.R @@ -22,8 +22,10 @@ test_that("Exporting is reproducible", { CAKE_export(list("FOCUS C" = FOCUS_2006_C, "FOCUS D" = FOCUS_2006_D), map = c(parent = "Parent", m1 = "M1"), + links = c(parent = "m1"), filename = "FOCUS_2006_D.csf", overwrite = TRUE, study = "FOCUS 2006 D") csf <- readLines(con = "FOCUS_2006_D.csf") - expect_known_output(csf, "FOCUS_2006_D.txt") + csf[8] <- "Date: Dummy date 0000-00-00" + expect_known_value(csf, file = "FOCUS_2006_D.rds") }) -- cgit v1.2.1