27 lines
464 B
Python
27 lines
464 B
Python
import logging
|
|
from unittest import TestCase
|
|
|
|
import lib.money
|
|
|
|
|
|
class TestMoney(TestCase):
|
|
def setUp(self):
|
|
logging.disable(logging.CRITICAL)
|
|
self.money = lib.money.Money()
|
|
|
|
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
|