Create boilerplate money tests
This commit is contained in:
23
handler/tests/test_money.py
Normal file
23
handler/tests/test_money.py
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
from unittest import TestCase
|
||||||
|
from money import Money
|
||||||
|
|
||||||
|
|
||||||
|
class TestMoney(TestCase):
|
||||||
|
def setUp(self):
|
||||||
|
self.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
|
||||||
Reference in New Issue
Block a user