Files
wanderer/test/wanderer_app_web/controllers/page_controller_test.exs
Dmitry Popov 4136aaad76 Initial commit
2024-09-18 01:55:30 +04:00

9 lines
233 B
Elixir

defmodule WandererAppWeb.PageControllerTest do
use WandererAppWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, ~p"/")
assert html_response(conn, 200) =~ "Peace of mind from prototype to production"
end
end