checkpoint: create/delete working now / existing tests passing / need moar tests
[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) =~ "Pwan.co Radar"
7 end
8 end