FunkyJuiceRecipes/tests/test_smoke.py

12 lines
219 B
Python
Raw Normal View History

2025-12-18 20:30:09 +00:00
import pytest
toga = pytest.importorskip("toga")
from funkyjuicerecipes.app import main, FunkyJuiceRecipesApp
def test_main_returns_app_instance():
app = main()
assert isinstance(app, FunkyJuiceRecipesApp)