(self)
| 524 | self._asset_writer.write(**kwargs) |
| 525 | |
| 526 | def init_instance_fixtures(self): |
| 527 | super(AssetFinderTestCase, self).init_instance_fixtures() |
| 528 | |
| 529 | conn = self.enter_instance_context(empty_assets_db()) |
| 530 | self._asset_writer = AssetDBWriter(conn) |
| 531 | self.asset_finder = self.asset_finder_type(conn) |
| 532 | |
| 533 | def test_blocked_lookup_symbol_query(self): |
| 534 | # we will try to query for more variables than sqlite supports |
nothing calls this directly
no test coverage detected