about summary refs log tree commit diff
path: root/test/guard_web/views
diff options
context:
space:
mode:
authorMelonai <einebeere@gmail.com>2021-05-13 02:18:25 +0200
committerMelonai <einebeere@gmail.com>2021-05-13 02:18:25 +0200
commit0bd75cadf7164979cc06f001ecc057f6275a2e3b (patch)
tree806eafe2bc732dd043d9e589ba6e1421a0569c21 /test/guard_web/views
parent14617077c7e348a3caa9f03224e7558beb680068 (diff)
downloadrook-0bd75cadf7164979cc06f001ecc057f6275a2e3b.tar.zst
rook-0bd75cadf7164979cc06f001ecc057f6275a2e3b.zip
Rename test folders to rook_web
Diffstat (limited to 'test/guard_web/views')
-rw-r--r--test/guard_web/views/error_view_test.exs14
-rw-r--r--test/guard_web/views/layout_view_test.exs8
2 files changed, 0 insertions, 22 deletions
diff --git a/test/guard_web/views/error_view_test.exs b/test/guard_web/views/error_view_test.exs
deleted file mode 100644
index 6ec5f1c..0000000
--- a/test/guard_web/views/error_view_test.exs
+++ /dev/null
@@ -1,14 +0,0 @@
-defmodule RookWeb.ErrorViewTest do
-  use RookWeb.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(RookWeb.ErrorView, "404.html", []) == "Not Found"
-  end
-
-  test "renders 500.html" do
-    assert render_to_string(RookWeb.ErrorView, "500.html", []) == "Internal Server Error"
-  end
-end
diff --git a/test/guard_web/views/layout_view_test.exs b/test/guard_web/views/layout_view_test.exs
deleted file mode 100644
index 48f119d..0000000
--- a/test/guard_web/views/layout_view_test.exs
+++ /dev/null
@@ -1,8 +0,0 @@
-defmodule RookWeb.LayoutViewTest do
-  use RookWeb.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