(self)
| 69 | """Test SearchIndexModel features.""" |
| 70 | |
| 71 | def test_repr(self): |
| 72 | self.assertRepr(SearchIndexModel({"hello": "hello"}, key=1)) |
| 73 | self.assertEqual( |
| 74 | repr(SearchIndexModel({"hello": "hello"}, key=1)), |
| 75 | "SearchIndexModel(definition={'hello': 'hello'}, key=1)", |
| 76 | ) |
| 77 | |
| 78 | |
| 79 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected