9 lines
243 B
Python
9 lines
243 B
Python
import pytest
|
|
from sensorpajen.tui.app import SensorpajenApp
|
|
|
|
def test_tui_app_init():
|
|
# Just test that we can instantiate it
|
|
app = SensorpajenApp()
|
|
assert app.discovery_manager is not None
|
|
assert app.sensor_config is not None
|