Test that prun does not clobber string escapes (GH #1302)
()
| 707 | |
| 708 | @dec.skipif(execution.profile is None) |
| 709 | def test_prun_quotes(): |
| 710 | "Test that prun does not clobber string escapes (GH #1302)" |
| 711 | _ip.magic(r"prun -q x = '\t'") |
| 712 | nt.assert_equal(_ip.user_ns['x'], '\t') |
| 713 | |
| 714 | def test_extension(): |
| 715 | # Debugging information for failures of this test |