Merge: Added contributing guidelines and link from readme
[nit.git] / lib / popcorn / examples / routing / test_example_param_route.sav / test_example_param_route.res
1
2 [Client] curl -s localhost:*****/Morriar
3 Hello Morriar
4 [Client] curl -s localhost:*****//
5                 <!DOCTYPE html>
6                 <html>
7                 <head>
8                         <meta charset="utf-8">
9                         <title>Not Found</title>
10                 </head>
11                 <body>
12                 <h1>404 Not Found</h1>
13                 </body>
14                 </html>
15 [Client] curl -s localhost:*****/
16                 <!DOCTYPE html>
17                 <html>
18                 <head>
19                         <meta charset="utf-8">
20                         <title>Not Found</title>
21                 </head>
22                 <body>
23                 <h1>404 Not Found</h1>
24                 </body>
25                 </html>
26 [Client] curl -s localhost:*****/not_found
27 Hello not_found
28 [Client] curl -s localhost:*****/not_found/not_found
29                 <!DOCTYPE html>
30                 <html>
31                 <head>
32                         <meta charset="utf-8">
33                         <title>Not Found</title>
34                 </head>
35                 <body>
36                 <h1>404 Not Found</h1>
37                 </body>
38                 </html>