(self)
| 1401 | ) |
| 1402 | |
| 1403 | def test_bindparam_subclass_nocache(self): |
| 1404 | # does not implement inherit_cache |
| 1405 | class _literal_bindparam(BindParameter): |
| 1406 | pass |
| 1407 | |
| 1408 | l1 = _literal_bindparam(None, value="x1") |
| 1409 | is_(l1._generate_cache_key(), None) |
| 1410 | |
| 1411 | def test_bindparam_subclass_ok_cache(self): |
| 1412 | # implements inherit_cache |
nothing calls this directly
no test coverage detected