7ea9ca325199c2f0389fcc1920e46c29b80ebaba
[liburi-template-perl.git] / t / data / opensearch.json
1 {
2   "variables": {
3     "bar"    : "a",
4     "x:bar"  : "b"
5   },
6
7   "tests": [
8     {
9       "template": "http://example.org/?q={bar?}",
10       "expected": "http://example.org/?q=a"
11     },
12
13     {
14       "template": "/{dne?}",
15       "expected": "/"
16     },
17
18     {
19       "template": "http://example.org/?q={bar}&r={x:bar}",
20       "expected": "http://example.org/?q=a&r=b"
21     }
22   ]
23 }