9 lines
144 B
Elixir
9 lines
144 B
Elixir
|
defmodule HAHandlerTest do
|
||
|
use ExUnit.Case
|
||
|
doctest HAHandler
|
||
|
|
||
|
test "greets the world" do
|
||
|
assert HAHandler.hello() == :world
|
||
|
end
|
||
|
end
|