Test that pprint works for classes with no __module__.
()
| 128 | nt.assert_equal(output, 'xxlimited.Null') |
| 129 | |
| 130 | def test_pprint_nomod(): |
| 131 | """ |
| 132 | Test that pprint works for classes with no __module__. |
| 133 | """ |
| 134 | output = pretty.pretty(NoModule) |
| 135 | nt.assert_equal(output, 'NoModule') |
| 136 | |
| 137 | def test_pprint_break(): |
| 138 | """ |