A dummy `Registry` item object for testing.
| 213 | |
| 214 | |
| 215 | class Item: |
| 216 | """ A dummy `Registry` item object for testing. """ |
| 217 | def __init__(self, data): |
| 218 | self.data = data |
| 219 | |
| 220 | def __repr__(self): |
| 221 | return repr(self.data) |
| 222 | |
| 223 | def __eq__(self, other): |
| 224 | return self.data == other |
| 225 | |
| 226 | |
| 227 | class RegistryTests(unittest.TestCase): |
no outgoing calls
searching dependent graphs…