(self)
| 731 | |
| 732 | class serialized: |
| 733 | def empty_collection(self): |
| 734 | expected = dict( |
| 735 | name=None, help=None, tasks=[], default=None, collections=[] |
| 736 | ) |
| 737 | assert expected == Collection().serialized() |
| 738 | |
| 739 | def empty_named_collection(self): |
| 740 | expected = dict( |
nothing calls this directly
no test coverage detected