Files
Exercism/julia/hello-world/runtests.jl

10 lines
159 B
Julia

using Test
include("hello-world.jl")
@testset verbose = true "tests" begin
@testset "Say Hi!" begin
@test hello() == "Hello, World!"
end
end