(self)
| 255 | return self._combine(items, prefix, suffix, large=large) |
| 256 | |
| 257 | def test_large_flat(self): |
| 258 | c1 = self.CLASS(range(SafeRepr.maxcollection[0] * 2)) |
| 259 | items = range(SafeRepr.maxcollection[0] - 1) |
| 260 | c1_expect = self.combine(items, large=True) |
| 261 | |
| 262 | self.assert_shortened(c1, c1_expect) |
| 263 | |
| 264 | def test_large_nested(self): |
| 265 | c1 = self.CLASS(range(SafeRepr.maxcollection[0] * 2)) |
nothing calls this directly
no test coverage detected