You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/tests/test_trezor.io.py

13 lines
200 B

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()