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