(self)
| 1033 | return '\n'.join(lines) |
| 1034 | |
| 1035 | def iter_codes(self): |
| 1036 | for docstring in (False, True): |
| 1037 | for assertion in (False, True): |
| 1038 | code = self.create_code(docstring=docstring, assertion=assertion) |
| 1039 | yield (code, docstring, assertion) |
| 1040 | |
| 1041 | def test_disabled(self): |
| 1042 | # Deduplication disabled, no hardlinks |
no test coverage detected