init repo

This commit is contained in:
Ryan Pandya
2022-12-23 01:05:17 -05:00
parent 718b29ea9b
commit 210506b5ec
46 changed files with 1755 additions and 30 deletions
@@ -0,0 +1,8 @@
defmodule BlogWeb.PageControllerTest do
use BlogWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, "/")
assert html_response(conn, 200) =~ "Welcome to Phoenix!"
end
end