init/test/init_test.exs

9 lines
129 B
Elixir
Raw Normal View History

2024-06-13 16:59:54 -04:00
defmodule InitTest do
use ExUnit.Case
doctest Init
test "greets the world" do
assert Init.hello() == :world
end
end