Files
fml13v01-buildroot/support/testing/tests/package/sample_python_rpi_gpio.py
T
2021-12-06 14:12:13 +08:00

7 lines
204 B
Python

try:
import RPi.GPIO # noqa
except RuntimeError as e:
assert(str(e) == 'This module can only be run on a Raspberry Pi!')
else:
raise RuntimeError('Import succeeded when it should not have!')