1
0
favro-sync/test/test_integration_api_to_formatter.py

12 lines
317 B
Python
Raw Normal View History

2024-10-10 09:46:24 +00:00
from favro_sync.favro_fuse import to_card_contents
from .test_client import create_client, needs_secrets
2024-10-10 12:02:02 +00:00
2024-10-10 09:46:24 +00:00
@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