mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
7be6630dfe
commit
5bf6e7f501
1 changed files with 2 additions and 0 deletions
|
@ -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"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue