Current section
Files
Jump to
Current section
Files
priv/example/test/example_web/controllers/page_controller_test.exs
defmodule ExampleWeb.PageControllerTest do
use ExampleWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, "/")
assert html_response(conn, 200) =~ "Welcome to Phoenix!"
end
end