Files

9 lines
241 B
Elixir
Raw Permalink Normal View History

2022-05-23 15:57:15 +02:00
defmodule SomethingErlangWeb.PageControllerTest do
use SomethingErlangWeb.ConnCase
test "GET /", %{conn: conn} do
2023-01-18 16:13:51 +01:00
conn = get(conn, ~p"/")
assert html_response(conn, 200) =~ "Peace of mind from prototype to production"
2022-05-23 15:57:15 +02:00
end
end