(self, *flags)
| 774 | pickle.dump(data, f) |
| 775 | |
| 776 | def invoke_pickle(self, *flags): |
| 777 | output = io.StringIO() |
| 778 | with contextlib.redirect_stdout(output): |
| 779 | pickle._main(args=[*flags, self.filename]) |
| 780 | return self.text_normalize(output.getvalue()) |
| 781 | |
| 782 | def test_invocation(self): |
| 783 | # test 'python -m pickle pickle_file' |
no test coverage detected