8 lines
152 B
Python
8 lines
152 B
Python
import pytest
|
|
|
|
from controls.device import DeviceLifecycleState
|
|
|
|
|
|
def test_enum():
|
|
assert DeviceLifecycleState["INIT"] == DeviceLifecycleState.INIT
|