katso/test/controllers/page_controller_test.exs
2015-04-18 23:03:53 +03:00

8 lines
166 B
Elixir

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