trezor-core/tests/test_trezor.io.py

13 lines
200 B
Python
Raw Normal View History

2017-06-20 05:13:26 -07:00
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()