initial commit

This commit is contained in:
Marc Planard 2022-04-07 19:28:36 +02:00
parent d91e8e7dcd
commit 836e828371
53 changed files with 2142 additions and 0 deletions

View file

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