(self, impl)
| 69 | |
| 70 | @testing.combinations(*_relevant_impls()) |
| 71 | def test_compile_params(self, impl): |
| 72 | new = impl.params(foo=5, bar=10) |
| 73 | is_not(new, impl) |
| 74 | eq_(impl.compile()._collected_params, {}) |
| 75 | eq_(new.compile()._collected_params, {class="st">"foo": 5, class="st">"bar": 10}) |
| 76 | eq_(new._generate_cache_key()[2], {class="st">"foo": 5, class="st">"bar": 10}) |
| 77 | |
| 78 | |
| 79 | class CacheTests(fixtures.TablesTest): |
nothing calls this directly
no test coverage detected