aboutsummaryrefslogtreecommitdiff
path: root/tests/test_ccxt_wrapper.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_ccxt_wrapper.py')
-rw-r--r--tests/test_ccxt_wrapper.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_ccxt_wrapper.py b/tests/test_ccxt_wrapper.py
index f07674e..18feab3 100644
--- a/tests/test_ccxt_wrapper.py
+++ b/tests/test_ccxt_wrapper.py
@@ -477,4 +477,8 @@ class poloniexETest(unittest.TestCase):
477 477
478 create_order.assert_called_once_with("symbol", "type", "side", "amount", price="price", params="params") 478 create_order.assert_called_once_with("symbol", "type", "side", "amount", price="price", params="params")
479 479
480 def test_common_currency_code(self):
481 self.assertEqual("FOO", self.s.common_currency_code("FOO"))
480 482
483 def test_currency_id(self):
484 self.assertEqual("FOO", self.s.currency_id("FOO"))