()
| 46 | |
| 47 | |
| 48 | def test_nonexistent(): |
| 49 | N = 8 |
| 50 | b = BTreeDict() |
| 51 | add_keys(b, N) |
| 52 | with pytest.raises(KeyError): |
| 53 | b[1.5] == False |
| 54 | assert b.delete_key(1.5) is None |
| 55 | with pytest.raises(KeyError): |
| 56 | del b[1.5] |
| 57 | |
| 58 | |
| 59 | def test_in_order(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…