2021-03-11 21:12:55 -05:00
|
|
|
defmodule LokalWeb.PageControllerTest do
|
|
|
|
use LokalWeb.ConnCase
|
|
|
|
|
|
|
|
test "GET /", %{conn: conn} do
|
|
|
|
conn = get(conn, "/")
|
2022-01-22 15:00:30 -05:00
|
|
|
assert html_response(conn, 200) =~ "Welcome to Lokal"
|
2021-03-11 21:12:55 -05:00
|
|
|
end
|
|
|
|
end
|