175 create person page (#178)

Created person page and updated search bar in the header to search for persons
This commit is contained in:
KM-R
2023-10-05 18:00:31 +02:00
committed by GitHub
parent bf7c072e87
commit 2152704dfc
16 changed files with 365 additions and 317 deletions

View File

@ -31,9 +31,9 @@ def test_go_to_home() -> None:
assert output == "/"
def test_go_to_company_page() -> None:
"""Checks if the go_to_company_page callback yields a result."""
output = app.go_to_company_page(1)
def test_go_to_detail_page() -> None:
"""Checks if the go_to_detail_page callback yields a result."""
output = app.go_to_detail_page("c_1")
assert output == "/Unternehmensdetails/1"