ezcontainer_example/test/ezcontainer_railway_web/controllers/page_controller_test.exs

9 lines
247 B
Elixir
Raw Permalink Normal View History

2023-10-24 23:23:57 -04:00
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