ezcontainer_example/test/ezcontainer_railway_web/controllers/page_controller_test.exs
2023-10-24 23:23:57 -04:00

8 lines
247 B
Elixir

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