9 lines
193 B
Elixir
9 lines
193 B
Elixir
defmodule LokalWeb.PageControllerTest do
|
|
use LokalWeb.ConnCase
|
|
|
|
test "GET /", %{conn: conn} do
|
|
conn = get(conn, "/")
|
|
assert html_response(conn, 200) =~ "Welcome to Lokal"
|
|
end
|
|
end
|