nit: Added link to `CONTRIBUTING.md` from the README
[nit.git] / lib / popcorn / tests / res / test_example_query_string.res
1
2 [Client] curl -s localhost:*****/
3 URI: /
4 Query string: 
5
6 [Client] curl -s localhost:*****/?user=Morriar
7 URI: /
8 Query string: user=Morriar
9 user: Morriar
10
11 [Client] curl -s localhost:*****/?reload
12 URI: /
13 Query string: reload
14
15 [Client] curl -s localhost:*****/?foo\&bar=baz
16 URI: /
17 Query string: foo&bar=baz
18 bar: baz
19
20 [Client] curl -s localhost:*****/?items=10\&order=asc
21 URI: /
22 Query string: items=10&order=asc
23 items: 10
24 order: asc