CRAN Package Check Results for Package plu

Last updated on 2025-12-06 00:48:54 CET.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 0.3.0 6.39 38.36 44.75 NOTE
r-devel-linux-x86_64-debian-gcc 0.3.0 5.58 26.93 32.51 ERROR
r-devel-linux-x86_64-fedora-clang 0.3.0 12.00 55.44 67.44 NOTE
r-devel-linux-x86_64-fedora-gcc 0.3.0 34.00 33.39 67.39 NOTE
r-devel-windows-x86_64 0.3.0 9.00 56.00 65.00 NOTE
r-patched-linux-x86_64 0.3.0 7.33 33.91 41.24 NOTE
r-release-linux-x86_64 0.3.0 6.32 34.49 40.81 NOTE
r-release-macos-arm64 0.3.0 NOTE
r-release-macos-x86_64 0.3.0 7.00 37.00 44.00 NOTE
r-release-windows-x86_64 0.3.0 9.00 55.00 64.00 NOTE
r-oldrel-macos-arm64 0.3.0 NOTE
r-oldrel-macos-x86_64 0.3.0 6.00 28.00 34.00 NOTE
r-oldrel-windows-x86_64 0.3.0 11.00 65.00 76.00 NOTE

Check Details

Version: 0.3.0
Check: Rd files
Result: NOTE checkRd: (-1) plu_more.Rd:16: Lost braces; missing escapes or markup? 16 | Additional arguments are replaced with "{n} more". | ^ Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Version: 0.3.0
Check: examples
Result: ERROR Running examples in ‘plu-Ex.R’ failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: plu_more > ### Title: Informatively display a maximum number of elements > ### Aliases: plu_more more > > ### ** Examples > > plu::more(letters) [1] "a" "b" "c" [4] "d" "e" "21 more characters" > > # Setting `max` > plu::more(letters, max = 10) [1] "a" "b" "c" [4] "d" "e" "f" [7] "g" "h" "i" [10] "j" "16 more characters" > plu::more(letters, max = 27) [1] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" "k" "l" "m" "n" "o" "p" "q" "r" "s" [20] "t" "u" "v" "w" "x" "y" "z" > > # If `max` is Inf or NULL, all elements will be preserved > plu::more(letters, max = Inf) [1] "a" "b" "c" "d" "e" "f" "g" "h" "i" "j" "k" "l" "m" "n" "o" "p" "q" "r" "s" [20] "t" "u" "v" "w" "x" "y" "z" > > # If `max` is less than one, no elements will be preserved > plu::more(letters, max = 0) [1] "26 characters" > > # Setting element type > plu::more(letters, type = "letter") [1] "a" "b" "c" "d" [5] "e" "21 more letters" > > # If `type` is FALSE or NULL, no type will be included > plu::more(letters, type = FALSE) [1] "a" "b" "c" "d" "e" "21 more" > > # Automatically generating type > plu::more(1:100) [1] "1" "2" "3" "4" [5] "5" "95 more integers" > plu::more(as.list(1:100)) [[1]] [1] 1 [[2]] [1] 2 [[3]] [1] 3 [[4]] [1] 4 [[5]] [1] 5 [[6]] [1] "95 more integers" > plu::more(c(as.list(1:2), as.list(letters))) [[1]] [1] 1 [[2]] [1] 2 [[3]] [1] "a" [[4]] [1] "b" [[5]] [1] "c" [[6]] [1] "23 more elements" > plu::more(fracture::fracture((1:9) / (9:1))) Error in loadNamespace(x) : there is no package called ‘fracture’ Calls: <Anonymous> ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart Execution halted Flavor: r-devel-linux-x86_64-debian-gcc

Version: 0.3.0
Check: tests
Result: ERROR Running ‘testthat.R’ [3s/3s] Running the tests in ‘tests/testthat.R’ failed. Complete output: > library(testthat) > library(plu) > > test_check("plu") Saving _problems/test-plu_more-109.R [ FAIL 1 | WARN 0 | SKIP 2 | PASS 271 ] ══ Skipped tests (2) ═══════════════════════════════════════════════════════════ • On CRAN (2): 'test-is_capital.R:119:3', 'test-is_capital.R:160:3' ══ Failed tests ════════════════════════════════════════════════════════════════ ── Error ('test-plu_more.R:106:3'): cardinal ─────────────────────────────────── Error: Could not find the function `fn` Backtrace: ▆ 1. ├─testthat::expect_equal(...) at test-plu_more.R:106:3 2. │ └─testthat::quasi_label(enquo(object), label) 3. │ └─rlang::eval_bare(expr, quo_get_env(quo)) 4. └─plu::plu_more(letters, fn = nombre::cardinal) 5. └─plu::get_fun(fn) 6. └─base::tryCatch(...) 7. └─base (local) tryCatchList(expr, classes, parentenv, handlers) 8. └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]]) 9. └─value[[3L]](cond) 10. └─plu:::error("Could not find the function ", code(fn_input)) [ FAIL 1 | WARN 0 | SKIP 2 | PASS 271 ] Error: ! Test failures. Execution halted Flavor: r-devel-linux-x86_64-debian-gcc