()
| 829 | |
| 830 | |
| 831 | def test_auto_blocksize(): |
| 832 | assert isinstance(auto_blocksize(3000, 15), int) |
| 833 | assert auto_blocksize(3000, 3) == 100 |
| 834 | assert auto_blocksize(5000, 2) == 250 |
| 835 | |
| 836 | |
| 837 | def test__infer_block_size(monkeypatch): |
nothing calls this directly
no test coverage detected