mirror of
https://github.com/fhswf/aki_prj23_transparenzregister.git
synced 2025-04-22 22:12:53 +02:00
This webfrontent adds a company to the search que or resets the search que entry to be searched again. This will allow for directed growth or an initiallisation. --------- Co-authored-by: Tristan Nolde <tristan.nolde@yahoo.de>
14 lines
332 B
Python
14 lines
332 B
Python
"""Tests if the about page can be created."""
|
|
from dash import html
|
|
|
|
from aki_prj23_transparenzregister.ui import app
|
|
from aki_prj23_transparenzregister.ui.pages import about
|
|
|
|
_ = app
|
|
|
|
|
|
def test_layout() -> None:
|
|
"""Checks if the about page can be created."""
|
|
result = about.layout()
|
|
assert isinstance(result, html.Div)
|