mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-14 20:04:49 +08:00
dae6d5c9c3
* Rename references * Update file and directory names * Fix homepage tests
21 lines
449 B
Elixir
21 lines
449 B
Elixir
defmodule LivebookWeb.ConnCase do
|
|
use ExUnit.CaseTemplate
|
|
|
|
using do
|
|
quote do
|
|
# Import conveniences for testing with connections
|
|
import Plug.Conn
|
|
import Phoenix.ConnTest
|
|
import LivebookWeb.ConnCase
|
|
|
|
alias LivebookWeb.Router.Helpers, as: Routes
|
|
|
|
# The default endpoint for testing
|
|
@endpoint LivebookWeb.Endpoint
|
|
end
|
|
end
|
|
|
|
setup _tags do
|
|
{:ok, conn: Phoenix.ConnTest.build_conn()}
|
|
end
|
|
end
|