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
+14
View File
@@ -0,0 +1,14 @@
defmodule BlogWeb.ErrorViewTest do
use BlogWeb.ConnCase, async: true
# Bring render/3 and render_to_string/3 for testing custom views
import Phoenix.View
test "renders 404.html" do
assert render_to_string(BlogWeb.ErrorView, "404.html", []) == "Not Found"
end
test "renders 500.html" do
assert render_to_string(BlogWeb.ErrorView, "500.html", []) == "Internal Server Error"
end
end
+8
View File
@@ -0,0 +1,8 @@
defmodule BlogWeb.LayoutViewTest do
use BlogWeb.ConnCase, async: true
# When testing helpers, you may want to import Phoenix.HTML and
# use functions such as safe_to_string() to convert the helper
# result into an HTML string.
# import Phoenix.HTML
end
+3
View File
@@ -0,0 +1,3 @@
defmodule BlogWeb.PageViewTest do
use BlogWeb.ConnCase, async: true
end