1
0
favro-sync/test/test_integration_api_to_formatter.py
Jon Michael Aanes cbb0cba076
Some checks failed
Test Python / Test (push) Failing after 26s
Ruff
2024-10-10 14:02:02 +02:00

12 lines
317 B
Python

from favro_sync.favro_fuse import to_card_contents
from .test_client import create_client, needs_secrets
@needs_secrets
def test_format_all_cards():
client = create_client()
for card in client.get_cards(todo_list=True):
contents = to_card_contents(card, client)
assert contents is not None