(self, src, dst)
| 3116 | yield (src, dst) |
| 3117 | |
| 3118 | def assert_files_eq(self, src, dst): |
| 3119 | with open(src, 'rb') as fsrc: |
| 3120 | with open(dst, 'rb') as fdst: |
| 3121 | self.assertEqual(fsrc.read(), fdst.read()) |
| 3122 | |
| 3123 | def test_content(self): |
| 3124 | with self.get_files() as (src, dst): |
no test coverage detected