25 lines
981 B
Python
25 lines
981 B
Python
import os
|
|
import sys
|
|
|
|
root = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))))
|
|
sys.path.append(root)
|
|
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
|
|
# https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
|
|
|
|
# ----------------------------------------------------------------------------
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from ccxt.test.exchange.base import test_account # noqa E402
|
|
from ccxt.test.exchange.base import test_shared_methods # noqa E402
|
|
|
|
def test_fetch_accounts(exchange, skipped_properties):
|
|
method = 'fetchAccounts'
|
|
accounts = exchange.fetch_accounts()
|
|
test_shared_methods.assert_non_emtpy_array(exchange, skipped_properties, method, accounts)
|
|
for i in range(0, len(accounts)):
|
|
test_account(exchange, skipped_properties, method, accounts[i])
|
|
return True
|