1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-09 17:02:03 +02:00

Try to support older R versions

This commit is contained in:
2018-04-19 14:10:57 +02:00
parent e7396b8f39
commit 82fec5cc51
10 changed files with 50 additions and 73 deletions

View File

@ -19,8 +19,8 @@ test_that("size format works", {
})
test_that("functions missing in older R versions work", {
expect_equal(strrep2("A", 5), "AAAAA")
expect_equal(strrep2(c("A", "B"), c(5, 2)), c("AAAAA", "BB"))
expect_equal(strrep("A", 5), "AAAAA")
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")