berrypod/test/berrypod_web/controllers/page_controller_test.exs
jamey 9528700862 rename project from SimpleshopTheme to Berrypod
All modules, configs, paths, and references updated.
836 tests pass, zero warnings.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 21:23:15 +00:00

17 lines
395 B
Elixir

defmodule BerrypodWeb.PageControllerTest do
use BerrypodWeb.ConnCase, async: false
import Berrypod.AccountsFixtures
setup do
user_fixture()
{:ok, _} = Berrypod.Settings.set_site_live(true)
:ok
end
test "GET / renders the shop home page", %{conn: conn} do
conn = get(conn, ~p"/")
assert html_response(conn, 200) =~ "Original designs, printed on demand"
end
end