EntryPoint objects are sortable, but result is undefined.
(self)
| 331 | assert self.ep.attr is None |
| 332 | |
| 333 | def test_sortable(self): |
| 334 | """ |
| 335 | EntryPoint objects are sortable, but result is undefined. |
| 336 | """ |
| 337 | sorted([ |
| 338 | EntryPoint(name='b', value='val', group='group'), |
| 339 | EntryPoint(name='a', value='val', group='group'), |
| 340 | ]) |
| 341 | |
| 342 | |
| 343 | class FileSystem( |