mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-17 21:22:10 +00:00
13 lines
220 B
Python
13 lines
220 B
Python
import unittest
|
|
import common
|
|
|
|
from trezorlib import messages_pb2 as messages
|
|
|
|
class TestDeviceRecover(common.TrezorTest):
|
|
|
|
def test_recover_device(self):
|
|
pass
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|