Files
exercism-workspace/hello-world/test/hello_world_test.gleam
Alexander Heldt 2a39dced2f hello-world
2025-10-29 20:09:30 +01:00

13 lines
193 B
Gleam

import exercism/should
import exercism/test_runner
import hello_world
pub fn main() {
test_runner.main()
}
pub fn say_hi_test() {
hello_world.hello()
|> should.equal("Hello, World!")
}