Elixir: Modules
Instructions
Tips
Loading...
Your exercise will be checked with these tests:
defmodule Test do
use ExUnit.Case
import ExUnit.CaptureIO
test "greets the world" do
msg = capture_io(fn -> My.Super.Module.hello() end) |> String.trim()
assert msg == "Hello, World!"
end
end
Teacher's solution will be available in:
20:00
