(self)
| 3121 | self.assertEqual(fsrc.read(), fdst.read()) |
| 3122 | |
| 3123 | def test_content(self): |
| 3124 | with self.get_files() as (src, dst): |
| 3125 | shutil.copyfileobj(src, dst) |
| 3126 | self.assert_files_eq(TESTFN, TESTFN2) |
| 3127 | |
| 3128 | def test_file_not_closed(self): |
| 3129 | with self.get_files() as (src, dst): |
nothing calls this directly
no test coverage detected