You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
463 B
Python

from unittest import TestCase
import lib.money
2 years ago
import logging
class TestMoney(TestCase):
def setUp(self):
2 years ago
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