mirror of
https://github.com/TheRealOwenRees/chess-endgame-trainer.git
synced 2026-09-19 11:03:52 +00:00
9 lines
235 B
Elixir
9 lines
235 B
Elixir
defmodule ChesstrainerWeb.PageControllerTest do
|
|
use ChesstrainerWeb.ConnCase
|
|
|
|
test "GET /", %{conn: conn} do
|
|
conn = get(conn, ~p"/")
|
|
assert html_response(conn, 200) =~ "Peace of mind from prototype to production"
|
|
end
|
|
end
|