bump_server/test/bump_web/controllers/page_controller_test.exs
raphael 4e607a7e45 adds phoenix boilerplate and database api
- message communication added
- database migration added
- initial commit
2021-12-05 00:36:13 +01:00

9 lines
194 B
Elixir

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