mirror of
https://github.com/msberends/AMR.git
synced 2025-08-19 11:42:15 +02:00
fix
This commit is contained in:
@@ -41,6 +41,9 @@ expect_equal(strrep(c("A", "B"), c(5, 2)), c("AAAAA", "BB"))
|
||||
expect_equal(trimws(" test "), "test")
|
||||
expect_equal(trimws(" test ", "l"), "test ")
|
||||
expect_equal(trimws(" test ", "r"), " test")
|
||||
expect_equal(trimws2(" test "), "test")
|
||||
expect_equal(trimws2(" test ", "l"), "test ")
|
||||
expect_equal(trimws2(" test ", "r"), " test")
|
||||
|
||||
expect_warning(AMR:::generate_warning_abs_missing(c("AMP", "AMX")))
|
||||
expect_warning(AMR:::generate_warning_abs_missing(c("AMP", "AMX"), any = TRUE))
|
||||
|
@@ -32,7 +32,9 @@
|
||||
|
||||
# functions used by import_fn()
|
||||
import_functions <- c(
|
||||
"%chin%" = "data.table",
|
||||
"anti_join" = "dplyr",
|
||||
"chmatch" = "data.table",
|
||||
"cur_column" = "dplyr",
|
||||
"full_join" = "dplyr",
|
||||
"has_internet" = "curl",
|
||||
|
Reference in New Issue
Block a user