(self)
| 71 | ) |
| 72 | |
| 73 | def test_columns_list_sql(self): |
| 74 | index = Index(fields=["headline"], name="whitespace_idx") |
| 75 | editor = connection.schema_editor() |
| 76 | self.assertIn( |
| 77 | "(%s)" % editor.quote_name("headline"), |
| 78 | str(index.create_sql(Article, editor)), |
| 79 | ) |
| 80 | |
| 81 | @skipUnlessDBFeature("supports_index_column_ordering") |
| 82 | def test_descending_columns_list_sql(self): |
nothing calls this directly
no test coverage detected