Sample for phoenix(elixir)-postgres

Signed-off-by: Manolis Kousanakis <ekousanakis@gmail.com>
This commit is contained in:
manolis kousanakis
2020-05-06 21:30:04 +03:00
parent 3599a2e685
commit f156dfb52c
57 changed files with 8997 additions and 0 deletions

View File

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