(self, package, path)
| 6 | |
| 7 | class CommonBinaryTests(util.CommonTests, unittest.TestCase): |
| 8 | def execute(self, package, path): |
| 9 | target = resources.files(package).joinpath(path) |
| 10 | with target.open('rb'): |
| 11 | pass |
| 12 | |
| 13 | |
| 14 | class CommonTextTests(util.CommonTests, unittest.TestCase): |