()
| 237 | |
| 238 | |
| 239 | def test_pretty_namedtuple_empty() -> None: |
| 240 | instance = collections.namedtuple("Thing", [])() |
| 241 | assert pretty_repr(instance) == "Thing()" |
| 242 | |
| 243 | |
| 244 | def test_pretty_namedtuple_custom_repr() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…