(self)
| 2407 | |
| 2408 | class TestWrite(WithInstanceTmpDir, ZiplineTestCase): |
| 2409 | def init_instance_fixtures(self): |
| 2410 | super(TestWrite, self).init_instance_fixtures() |
| 2411 | self.assets_db_path = path = os.path.join( |
| 2412 | self.instance_tmpdir.path, |
| 2413 | 'assets.db', |
| 2414 | ) |
| 2415 | self.writer = AssetDBWriter(path) |
| 2416 | |
| 2417 | def new_asset_finder(self): |
| 2418 | return AssetFinder(self.assets_db_path) |
no test coverage detected