Files
buildroot/support/testing/tests/package/sample_python_rpi_gpio.py
2021-03-13 22:13:38 -03: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!')