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