()
| 52 | for style in ('Linux', 'NoColor','LightBG', 'Neutral'): |
| 53 | |
| 54 | def test_unicode_colorize(): |
| 55 | p = Parser(style=style) |
| 56 | f1 = p.format('1/0', 'str') |
| 57 | f2 = p.format(u'1/0', 'str') |
| 58 | nt.assert_equal(f1, f2) |
| 59 | |
| 60 | def test_parse_sample(): |
| 61 | """and test writing to a buffer""" |