ex-scopes/test/hello_test.exs

9 lines
133 B
Elixir

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