test_that("lastName works", {
expect_equal(lastName("Gert Hatschbach") , "Hatschbach")
expect_equal(lastName("Hermogenes Leitão Filho") , "Leitão Filho")
expect_equal(lastName("Hermogenes Leitão Filho", invert = TRUE), "Hermogenes")
expect_equal(lastName("Hermogenes Leitão Filho",
invert = TRUE, initials = TRUE), "H.")
lastName("H Leitão Filho", invert = TRUE, initials = FALSE)
expect_equal(lastName("H Leitão Filho", invert = TRUE, initials = F), "H")
expect_equal(lastName("H Leitão Filho", invert = TRUE, initials = TRUE), "H.")
expect_equal(lastName("hermogenes leitão filho", first.capital = FALSE), "leitão filho")
expect_equal(lastName("Hermogenes Leitão Filho", first.capital = FALSE), "Leitão Filho")
expect_equal(lastName("Augustin Saint-hilaire") , "Saint-Hilaire")
expect_equal(lastName("Saint-Hilaire, A.") , "Saint-Hilaire")
expect_equal(lastName("Maria Da Silva") , "Silva")
expect_equal(lastName(c("José Santos", NA)) , c("Santos","s.n."))
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.