mirror of
https://codeberg.org/listyantidewi/your-everyday-tools.git
synced 2026-07-01 23:17:37 +08:00
13 lines
418 B
Python
13 lines
418 B
Python
from utils.capabilities import QUALITY_HIGH, get_capabilities
|
|
|
|
|
|
def test_capabilities_shape():
|
|
data = get_capabilities()
|
|
|
|
assert data["offline"] is True
|
|
assert "engines" in data
|
|
assert "routes" in data
|
|
assert "libreoffice" in data["engines"]
|
|
assert data["routes"]["/spreadsheet/excel-to-pdf"]["label"] == "Excel to PDF"
|
|
assert data["routes"]["/image/svg-to-png"]["quality"] == QUALITY_HIGH
|