2022-07-15 10:09:54 +00:00
|
|
|
import logging
|
2022-02-24 22:29:09 +00:00
|
|
|
from unittest import TestCase
|
2022-07-15 10:09:54 +00:00
|
|
|
|
2022-05-05 17:16:56 +00:00
|
|
|
import lib.money
|
2022-02-24 22:29:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TestMoney(TestCase):
|
|
|
|
def setUp(self):
|
2022-05-24 07:38:37 +00:00
|
|
|
logging.disable(logging.CRITICAL)
|
2022-05-05 17:16:56 +00:00
|
|
|
self.money = lib.money.Money()
|
2022-02-24 22:29:09 +00:00
|
|
|
|
|
|
|
def test_lookup_rates(self):
|
|
|
|
# Move from Agora tests
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_get_rates_all(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_get_acceptable_margins(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_to_usd(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_get_profit(self):
|
|
|
|
pass
|