mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
9 lines
204 B
Elixir
9 lines
204 B
Elixir
|
defmodule PhilomenaWeb.PageControllerTest do
|
||
|
use PhilomenaWeb.ConnCase
|
||
|
|
||
|
test "GET /", %{conn: conn} do
|
||
|
conn = get(conn, "/")
|
||
|
assert html_response(conn, 200) =~ "Welcome to Phoenix!"
|
||
|
end
|
||
|
end
|