mirror of
https://codeberg.org/JasterV/spazio-solazzo.git
synced 2026-04-26 18:20:03 +00:00
27 lines
787 B
Elixir
27 lines
787 B
Elixir
defmodule SpazioSolazzoWeb.CoworkingLiveTest do
|
|
use SpazioSolazzoWeb.ConnCase
|
|
import Phoenix.LiveViewTest
|
|
|
|
alias SpazioSolazzo.BookingSystem
|
|
|
|
setup do
|
|
{:ok, space} = BookingSystem.create_space("CoworkingTest", "coworking", "desc", 10)
|
|
|
|
%{space: space}
|
|
end
|
|
|
|
describe "CoworkingLive landing page" do
|
|
test "renders coworking landing page with space information", %{conn: conn, space: space} do
|
|
{:ok, _view, html} = live(conn, "/coworking")
|
|
|
|
assert html =~ space.name
|
|
assert html =~ "Fiber Internet"
|
|
end
|
|
|
|
test "has link to space booking page with correct space slug", %{conn: conn, space: space} do
|
|
{:ok, view, _html} = live(conn, "/coworking")
|
|
|
|
assert has_element?(view, "a[href='/book/space/#{space.slug}']")
|
|
end
|
|
end
|
|
end
|