This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
graphql-lightning-talk/test/faces_web/controllers/page_controller_test.exs

9 lines
195 B
Elixir
Raw Normal View History

2018-04-08 09:20:53 +12:00
defmodule FacesWeb.PageControllerTest do
use FacesWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get conn, "/"
assert html_response(conn, 200) =~ "Welcome to Phoenix!"
end
end