(self)
| 3563 | |
| 3564 | class BackslashReplaceTest(fixtures.TestBase): |
| 3565 | def test_ascii_to_utf8(self): |
| 3566 | eq_( |
| 3567 | compat.decode_backslashreplace(util.b("hello world"), "utf-8"), |
| 3568 | "hello world", |
| 3569 | ) |
| 3570 | |
| 3571 | def test_utf8_to_utf8(self): |
| 3572 | eq_( |