mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-06-27 22:31:43 +00:00
16 lines
378 B
Python
16 lines
378 B
Python
from ahriman.application.formatters.update_printer import UpdatePrinter
|
|
|
|
|
|
def test_properties(update_printer: UpdatePrinter) -> None:
|
|
"""
|
|
must return empty properties list
|
|
"""
|
|
assert update_printer.properties()
|
|
|
|
|
|
def test_title(update_printer: UpdatePrinter) -> None:
|
|
"""
|
|
must return non empty title
|
|
"""
|
|
assert update_printer.title() is not None
|