(self)
| 212 | |
| 213 | class JoinPromoterTest(SimpleTestCase): |
| 214 | def test_repr(self): |
| 215 | self.assertEqual( |
| 216 | repr(JoinPromoter(AND, 3, True)), |
| 217 | "JoinPromoter(connector='AND', num_children=3, negated=True)", |
| 218 | ) |
nothing calls this directly
no test coverage detected