Initial commit: there's still tons of base Phoenix boilerplate to remove, but the...
[tech-radar-editor.git] / test / controllers / page_controller_test.exs
1 defmodule TechRadarEditor.PageControllerTest do
2 use TechRadarEditor.ConnCase
3
4 test "GET /", %{conn: conn} do
5 conn = get conn, "/"
6 assert html_response(conn, 200) =~ "Welcome to Phoenix!"
7 end
8 end