diff options
Diffstat (limited to 'tests/pyb/spi.py')
-rw-r--r-- | tests/pyb/spi.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/pyb/spi.py b/tests/pyb/spi.py index 24a7a85a54..16b51e7e44 100644 --- a/tests/pyb/spi.py +++ b/tests/pyb/spi.py @@ -1,5 +1,13 @@ from pyb import SPI +# test we can correctly create by id or name +for bus in (-1, 0, 1, 2, 3, "X", "Y", "Z"): + try: + SPI(bus) + print("SPI", bus) + except ValueError: + print("ValueError", bus) + spi = SPI(1) print(spi) |