katso/test/controllers/page_controller_test.exs
2015-11-28 16:27:58 +02:00

8 lines
176 B
Elixir

defmodule Katso.PageControllerTest do
use Katso.ConnCase
test "GET /" do
conn = get conn(), "/"
assert html_response(conn, 200) =~ "Welcome to Phoenix!"
end
end