This commit is contained in:
Pim Kunis 2019-07-13 20:16:46 +02:00
commit 08c904ba12
57 changed files with 12621 additions and 0 deletions

View file

@ -0,0 +1,8 @@
defmodule UiWeb.PageControllerTest do
use UiWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, "/")
assert html_response(conn, 200) =~ "Welcome to Phoenix!"
end
end