(self)
| 71 | global_map = {} |
| 72 | |
| 73 | def test_simple_buffer(self): |
| 74 | bs = [ |
| 75 | [b(0), b(1), b(2)], |
| 76 | [b(1), b(2), b(3)], |
| 77 | [b(4), b(3)], |
| 78 | [b(5), b(2)], |
| 79 | ] |
| 80 | check_assign(bs) |
| 81 | |
| 82 | def test_simple_pinned(self): |
| 83 | bs = [ |
nothing calls this directly
no test coverage detected