(self, src, dst)
| 3090 | yield (src, dst) |
| 3091 | |
| 3092 | def assert_files_eq(self, src, dst): |
| 3093 | with open(src, 'rb') as fsrc: |
| 3094 | with open(dst, 'rb') as fdst: |
| 3095 | self.assertEqual(fsrc.read(), fdst.read()) |
| 3096 | |
| 3097 | def test_content(self): |
| 3098 | with self.get_files() as (src, dst): |
no test coverage detected