1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 10:29:01 +00:00
trezor-firmware/tests/test_trezor.io.py
2017-06-20 14:14:47 +02:00

13 lines
200 B
Python

from common import *
from trezor import io
class TestIo(unittest.TestCase):
def test_sdcard(self):
sd = io.SDCard()
sd.present()
if __name__ == '__main__':
unittest.main()