blob: b7a0299d3940d5ca97fb8de0628b03c721c65c56 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
defmodule LSGWeb.PageControllerTest do
use LSGWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get conn, "/"
assert html_response(conn, 200) =~ "Welcome to Phoenix!"
end
end
|