diff options
author | Peterlits Zo <peterlitszo@outlook.com> | 2021-10-31 19:26:30 +0800 |
---|---|---|
committer | Peterlits Zo <peterlitszo@outlook.com> | 2021-10-31 19:26:30 +0800 |
commit | a5e9f91e59e54bf1889a7eb2bfb24539a281e181 (patch) | |
tree | bb1a5748d64791ee4370bcc78c715c6d095610f4 /tests.py | |
parent | 73cb9ef10ac748141f066ada2f29f0f6daf3eb01 (diff) | |
download | python-json-pointer-a5e9f91e59e54bf1889a7eb2bfb24539a281e181.tar.gz |
Add test for get_parts (new method)
Diffstat (limited to 'tests.py')
-rwxr-xr-x | tests.py | 23 |
1 files changed, 22 insertions, 1 deletions
@@ -70,10 +70,31 @@ class SpecificationTests(unittest.TestCase): ptr = JsonPointer(path) self.assertEqual(path, ptr.path) - parts = ptr.parts + parts = ptr.get_parts() + self.assertEqual(parts, ptr.parts) new_ptr = JsonPointer.from_parts(parts) self.assertEqual(ptr, new_ptr) + def test_parts(self): + paths = [ + ("", []), + ("/foo", ['foo']), + ("/foo/0", ['foo', '0']), + ("/", ['']), + ("/a~1b", ['a/b']), + ("/c%d", ['c%d']), + ("/e^f", ['e^f']), + ("/g|h", ['g|h']), + ("/i\\j", ['i\j']), + ("/k\"l", ['k"l']), + ("/ ", [' ']), + ("/m~0n", ['m~n']), + ('/\xee', ['\xee']), + ] + for path in paths: + ptr = JsonPointer(path[0]) + self.assertEqual(ptr.get_parts(), path[1]) + class ComparisonTests(unittest.TestCase): |