util.jsonpointer: Improve tests

Result of mutation testing

Remaining mutants are mostly relating to the math.type() fallback.

Another case being that array[#array+1] == array[#array+2] and thus
doesn't matter.
This commit is contained in:
Kim Alvefur 2022-10-19 14:21:13 +02:00
parent 7be6630dfe
commit 5bf6e7f501

View file

@ -21,9 +21,11 @@ describe("util.jsonpointer", function()
}]])
end)
it("works", function()
assert.is_nil(jp.resolve("string", "/string"))
assert.same(example, jp.resolve(example, ""));
assert.same({ "bar", "baz" }, jp.resolve(example, "/foo"));
assert.same("bar", jp.resolve(example, "/foo/0"));
assert.same(nil, jp.resolve(example, "/foo/-"));
assert.same(0, jp.resolve(example, "/"));
assert.same(1, jp.resolve(example, "/a~1b"));
assert.same(2, jp.resolve(example, "/c%d"));