1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 19:09:10 +00:00
trezor-firmware/core/tests/test_apps.common.coins.py
2019-05-22 16:46:49 +02:00

29 lines
681 B
Python

from common import *
from apps.common import coins
class TestCoins(unittest.TestCase):
def test_coins(self):
ref = [
('BTC', 'Bitcoin', 0),
('NMC', 'Namecoin', 52),
('LTC', 'Litecoin', 48),
('DASH', 'Dash', 76),
('ZEC', 'Zcash', 7352),
('TAZ', 'Zcash Testnet', 7461),
]
for s, n, a in ref:
c = coins.by_name(n)
self.assertEqual(c.address_type, a)
self.assertEqual(c.coin_shortcut, s)
def test_failure(self):
with self.assertRaises(ValueError):
coins.by_name('XXXXX')
if __name__ == '__main__':
unittest.main()