| 481 | |
| 482 | |
| 483 | class DummyItem: |
| 484 | def __init__(self, order=None): |
| 485 | self.order = order |
| 486 | |
| 487 | def __eq__(self, other): |
| 488 | return self.order == other.order |
| 489 | |
| 490 | def __ne__(self, other): |
| 491 | return not (self == other) |
| 492 | |
| 493 | |
| 494 | class MockIndex: |
no outgoing calls