Test that p.break_ produces expected output
()
| 135 | nt.assert_equal(output, 'NoModule') |
| 136 | |
| 137 | def test_pprint_break(): |
| 138 | """ |
| 139 | Test that p.break_ produces expected output |
| 140 | """ |
| 141 | output = pretty.pretty(Breaking()) |
| 142 | expected = "TG: Breaking(\n ):" |
| 143 | nt.assert_equal(output, expected) |
| 144 | |
| 145 | def test_pprint_break_repr(): |
| 146 | """ |