aboutsummaryrefslogtreecommitdiff
path: root/shardweb/test/shard_web/views/error_view_test.exs
diff options
context:
space:
mode:
Diffstat (limited to 'shardweb/test/shard_web/views/error_view_test.exs')
-rw-r--r--shardweb/test/shard_web/views/error_view_test.exs16
1 files changed, 16 insertions, 0 deletions
diff --git a/shardweb/test/shard_web/views/error_view_test.exs b/shardweb/test/shard_web/views/error_view_test.exs
new file mode 100644
index 0000000..a174f48
--- /dev/null
+++ b/shardweb/test/shard_web/views/error_view_test.exs
@@ -0,0 +1,16 @@
+defmodule ShardWeb.ErrorViewTest do
+ use ShardWeb.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(ShardWeb.ErrorView, "404.html", []) ==
+ "Not Found"
+ end
+
+ test "renders 500.html" do
+ assert render_to_string(ShardWeb.ErrorView, "500.html", []) ==
+ "Internal Server Error"
+ end
+end