init/test/init_test.exs
2024-06-13 16:59:54 -04:00

8 lines
129 B
Elixir

defmodule InitTest do
use ExUnit.Case
doctest Init
test "greets the world" do
assert Init.hello() == :world
end
end