mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-06-30 23:55:49 +00:00
* handle packages which have been removed from the repository * manually remove packages which have been removed from the base
16 lines
382 B
Python
16 lines
382 B
Python
from ahriman.application.formatters.string_printer import StringPrinter
|
|
|
|
|
|
def test_properties(string_printer: StringPrinter) -> None:
|
|
"""
|
|
must return empty properties list
|
|
"""
|
|
assert not string_printer.properties()
|
|
|
|
|
|
def test_title(string_printer: StringPrinter) -> None:
|
|
"""
|
|
must return non empty title
|
|
"""
|
|
assert string_printer.title() is not None
|