(self)
| 1502 | |
| 1503 | class TestPercentEncode(unittest.TestCase): |
| 1504 | def test_percent_encode_obj(self): |
| 1505 | self.assertEqual(percent_encode(1), '1') |
| 1506 | |
| 1507 | def test_percent_encode_text(self): |
| 1508 | self.assertEqual(percent_encode(''), '') |
nothing calls this directly
no test coverage detected