(self)
| 3434 | self._test_composed_index_with_fk(index) |
| 3435 | |
| 3436 | def test_composed_desc_index_with_fk(self): |
| 3437 | index = Index(fields=["-author", "title"], name="book_author_title_idx") |
| 3438 | self._test_composed_index_with_fk(index) |
| 3439 | |
| 3440 | @skipUnlessDBFeature("supports_expression_indexes") |
| 3441 | def test_composed_func_index_with_fk(self): |
nothing calls this directly
no test coverage detected