mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-09 17:10:17 +00:00
13 lines
200 B
Python
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()
|