example: Add simple router example (#12)

This commit is contained in:
Eishun Kondoh 2018-10-09 18:55:41 +09:00 committed by GitHub
parent 07821494dd
commit 5049e0643a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 621 additions and 0 deletions

View file

@ -0,0 +1,8 @@
defmodule SimpleRouterTest do
use ExUnit.Case
doctest SimpleRouter
test "greets the world" do
assert SimpleRouter.hello() == :world
end
end