cara/cara/tests/apps/test_expert_app.py
2020-11-11 11:35:28 +01:00

9 lines
311 B
Python

import cara.apps
def test_app():
# To start with, let's just test that the application runs. We don't try to
# do anything fancy to verify how it looks etc., we leave that for manual
# testing.
expert_app = cara.apps.ExpertApplication()
assert expert_app.scenario_names[0] == "Scenario 1"