diff options
Diffstat (limited to 'tests/test_jsonpath.py')
-rw-r--r-- | tests/test_jsonpath.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_jsonpath.py b/tests/test_jsonpath.py index 2c01992..33c0ea6 100644 --- a/tests/test_jsonpath.py +++ b/tests/test_jsonpath.py @@ -130,7 +130,8 @@ class TestJsonPath(unittest.TestCase): self.check_cases([ ('[0]', [42], [42]), ('[5]', [42], []), - ('[2]', [34, 65, 29, 59], [29]) + ('[2]', [34, 65, 29, 59], [29]), + ('[0]', None, []) ]) def test_slice_value(self): |