test_that("check_is_named_list() works", { l <- list(a = "a", b = 2, c = letters) expect_identical(l, check_is_named_list(l)) expect_usethis_error(check_is_named_list(NULL), "must be a list") expect_usethis_error(check_is_named_list(c(a = "a", b = "b")), "must be a list") expect_usethis_error(check_is_named_list(list("a", b = 2)), "Names of .+ must be") }) test_that("asciify() substitutes non-ASCII but respects case", { expect_identical(asciify("aB!d$F+_h"), "aB-d-F-_h") }) test_that("path_first_existing() works", { create_local_project() all_3_files <- proj_path(c("alfa", "bravo", "charlie")) expect_null(path_first_existing(all_3_files)) write_utf8(proj_path("charlie"), "charlie") expect_equal(path_first_existing(all_3_files), proj_path("charlie")) write_utf8(proj_path("bravo"), "bravo") expect_equal(path_first_existing(all_3_files), proj_path("bravo")) })