12 lines
219 B
Python
12 lines
219 B
Python
import pytest
|
|
|
|
|
|
toga = pytest.importorskip("toga")
|
|
|
|
from funkyjuicerecipes.app import main, FunkyJuiceRecipesApp
|
|
|
|
|
|
def test_main_returns_app_instance():
|
|
app = main()
|
|
assert isinstance(app, FunkyJuiceRecipesApp)
|