(self)
| 10 | |
| 11 | class TestConverter(TestCase): |
| 12 | def test_escape_string(self): |
| 13 | self.assertEqual(converters.escape_string("foo\nbar"), "foo\\nbar") |
| 14 | |
| 15 | def test_convert_datetime(self): |
| 16 | expected = datetime.datetime(2007, 2, 24, 23, 6, 20) |
nothing calls this directly
no test coverage detected