()
| 53 | |
| 54 | |
| 55 | def test_parse_date(): |
| 56 | exchange = ccxt.Exchange({ |
| 57 | 'id': 'sampleexchange', |
| 58 | }) |
| 59 | assert exchange.parse_date('1986-04-26 00:00:00') == 514857600000 |
| 60 | assert exchange.parse_date('1986-04-26T01:23:47.000Z') == 514862627000 |
| 61 | assert exchange.parse_date('1986-13-13 00:00:00') is None |
| 62 | |
| 63 | |
| 64 | def test_microseconds(): |
no test coverage detected
searching dependent graphs…