-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest-extractSMR.R
32 lines (30 loc) · 1.29 KB
/
test-extractSMR.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
test_that("extractSMR works", {
# test below subgroup level/case insensitivity/no factor
expect_equal(extractSMR("Aquolls", as.is = TRUE), c(Aquolls = "aquic"))
# test with multiple subgroup level taxa,
# including one w/ more formative elements than usual (humic inceptic eutroperox)
expect_equal(extractSMR(c("aquic haploxeralfs",
"typic epiaqualfs",
"humic inceptic eutroperox",
"aquisalids",
"aquiturbels")),
factor(
c(`aquic haploxeralfs` = "xeric",
`typic epiaqualfs` = "aquic",
`humic inceptic eutroperox` = "perudic",
`aquisalids` = "aridic (torric)",
`aquiturbels` = "aquic"
),
levels = SoilMoistureRegimeLevels(as.is = TRUE),
ordered = TRUE)
)
expect_equal(extractSMR(c('xerollic glossocryalfs', 'ustic haplocambids')),
factor(
c(
`xerollic glossocryalfs` = "xeric",
`ustic haplocambids` = "aridic (torric)"
),
levels = SoilMoistureRegimeLevels(as.is = TRUE),
ordered = TRUE
))
})