Move to GraphQL

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2018-11-06 10:30:27 +01:00
parent 7e137d1a1c
commit b54dae7e15
149 changed files with 5605 additions and 4665 deletions

View File

@@ -0,0 +1,18 @@
defmodule MobilizonWeb.ErrorViewTest do
use MobilizonWeb.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(MobilizonWeb.ErrorView, "404.html", []) == "Page not found"
end
test "render 500.html" do
assert render_to_string(MobilizonWeb.ErrorView, "500.html", []) == "Internal server error"
end
test "render any other" do
assert render_to_string(MobilizonWeb.ErrorView, "505.html", []) == "Internal server error"
end
end