(self, *flags)
| 845 | pickle.dump(data, f) |
| 846 | |
| 847 | def invoke_pickle(self, *flags): |
| 848 | output = io.StringIO() |
| 849 | with contextlib.redirect_stdout(output): |
| 850 | pickle._main(args=[*flags, self.filename]) |
| 851 | return self.text_normalize(output.getvalue()) |
| 852 | |
| 853 | def test_invocation(self): |
| 854 | # test 'python -m pickle pickle_file' |
no test coverage detected