1
0
favro-sync/test/test_integration_api_to_formatter.py
2024-10-10 11:46:24 +02:00

13 lines
414 B
Python

from favro_sync.favro_client import SeqId
from favro_sync.favro_fuse import to_card_contents
from favro_sync.favro_markdown import CardFileFormatter
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