()
| 159 | |
| 160 | |
| 161 | def test_pformat_dispatch(): |
| 162 | assert _pformat_dispatch("a") == "'a'" |
| 163 | assert _pformat_dispatch("a" * 10, width=5) == "'aaaaaaaaaa'" |
| 164 | assert _pformat_dispatch("foo bar", width=5) == "('foo '\n 'bar')" |
| 165 | |
| 166 | |
| 167 | def test_broken_getattribute(): |
nothing calls this directly
no test coverage detected