tasq/node_modules/uri-templates/test/custom-tests-2.json

18 lines
461 B
JSON

{
"Custom Examples 1": {
"variables": {
"path": "a/b/c",
"path2": "/a/b",
"query": {"abc": 123},
"date": "20140101",
"id": "1",
"page": null
},
"testcases": [
["{path}{?query*}", "a%2Fb%2Fc?abc=123"],
["{+path}{?query*}", "a/b/c?abc=123"],
["{+path2}/c/capture{/date,id,page}", "/a/b/c/capture/20140101/1"]
]
}
}