Test that __version__ is defined
()
| 13 | ) |
| 14 | |
| 15 | def test_version(): |
| 16 | """Test that __version__ is defined""" |
| 17 | from binance import __version__ |
| 18 | assert isinstance(__version__, str) |
| 19 | assert __version__ is not None |
| 20 | |
| 21 | def test_client_import(): |
| 22 | """Test Client class import""" |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…