adicionadas novas chamadas API

This commit is contained in:
2024-06-12 09:11:59 +01:00
parent 8155c4f734
commit ef84c90bc8
5 changed files with 1291 additions and 332 deletions

View File

@ -0,0 +1,38 @@
import unittest
import modulos.coingecko_api as cgapi
class Teste_API(unittest.TestCase):
'''teste API()'''
pass
class Teste_ping(unittest.TestCase):
'''teste ping()'''
pass
class Teste_coin_price_by_ids(unittest.TestCase):
'''teste coin_price_by_ids()'''
pass
class Teste_supported_currencies_list(unittest.TestCase):
'''teste supported_currencies_list()'''
pass
class Teste_coin_price_by_token_addresses(unittest.TestCase):
'''teste coin_price_by_token_addresses()'''
pass
class Teste_coins_list(unittest.TestCase):
'''teste coins_list()'''
pass
class Teste_coins_list_with_market_data(unittest.TestCase):
'''teste coins_list_with_market_data()'''
pass