()
| 16 | from ccxt.test.exchange.base import test_shared_methods # noqa E402 |
| 17 | |
| 18 | def test_array_concat(): |
| 19 | exchange = ccxt.Exchange({ |
| 20 | 'id': 'sampleexchange', |
| 21 | }) |
| 22 | test_shared_methods.assert_deep_equal(exchange, None, 'testArrayConcat', exchange.array_concat(['b'], ['a', 'c']), ['b', 'a', 'c']) |
no test coverage detected
searching dependent graphs…