tres/examples/simple_router/test/simple_router_test.exs
2018-10-09 18:55:41 +09:00

8 lines
153 B
Elixir

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