1
1
Fork 0
exercism/r/hello-world/test_hello-world.R
Christina Sørensen f4bf341e34
feat(r): hello world
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-12-19 16:46:18 +01:00

6 lines
118 B
R

source("./hello-world.R")
library(testthat)
test_that("no name", {
expect_equal(hello_world(), "Hello, World!")
})