Nothing
test_that("import works", {
path <-
system.file(
"extdata",
package = "LightLogR"
)
filename <- "205_actlumus_Log_1020_20230904101707532.txt.zip"
tz <- "UTC"
pattern <- "^(\\d{3})"
data <- import$ActLumus(filename, path, tz = tz, auto.id = pattern, silent = TRUE)
import_cols <- c("Id",
"file.name",
"Datetime",
"MS",
"EVENT",
"TEMPERATURE",
"EXT.TEMPERATURE",
"ORIENTATION",
"PIM",
"PIMn",
"TAT",
"TATn",
"ZCM",
"ZCMn",
"LIGHT",
"AMB.LIGHT",
"RED.LIGHT",
"GREEN.LIGHT",
"BLUE.LIGHT",
"IR.LIGHT",
"UVA.LIGHT",
"UVB.LIGHT",
"STATE",
"CAP_SENS_1",
"CAP_SENS_2",
"F1",
"F2",
"F3",
"F4",
"F5",
"F6",
"F7",
"F8",
"MEDI",
"CLEAR")
#check if the data has the correct dimensions
expect_equal(dim(data), c(61016, 35))
#check if the data has the correct column names
expect_equal(names(data), import_cols)
#check if the function extracted the correct name from the filepath and whether there is only one
expect_equal(unique(data$Id) %>% as.character(), "205")
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.