Sha256: 93657fbfbb11cd92e0e1bc6cc4e6c7f67db46b58cc496ad1dc06962079c2a57f
Contents?: true
Size: 343 Bytes
Versions: 26
Compression:
Stored size: 343 Bytes
Contents
source("./hello-world.R") library(testthat) test_that("no name", { expect_equal(hello_world(), "Hello, World!") }) test_that("sample name", { expect_equal(hello_world("Alice"), "Hello, Alice!") }) test_that("other sample name", { expect_equal(hello_world("Bob"), "Hello, Bob!") }) print("All tests passed for exercise: hello-world")
Version data entries
26 entries across 26 versions & 1 rubygems