Test that set and frozenset use Python 3 formatting.
(obj, expected_output)
| 137 | ), |
| 138 | ) |
| 139 | def test_sets(obj, expected_output): |
| 140 | """ |
| 141 | Test that set and frozenset use Python 3 formatting. |
| 142 | """ |
| 143 | got_output = pretty.pretty(obj) |
| 144 | assert got_output == expected_output |
| 145 | |
| 146 | |
| 147 | def test_pprint_heap_allocated_type(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…