Merge: Added contributing guidelines and link from readme
[nit.git] / lib / popcorn / test_popcorn.sav / test_router.res
1
2 [Client] curl -s localhost:*****
3 /
4 [Client] curl -s localhost:*****/
5 /
6 [Client] curl -s localhost:*****/user
7 /user
8 [Client] curl -s localhost:*****/user/
9 /user
10 [Client] curl -s localhost:*****/user/settings
11 /user/settings
12 [Client] curl -s localhost:*****/products
13 /products
14 [Client] curl -s localhost:*****/products/
15 /products
16 [Client] curl -s localhost:*****/products/list
17 /products/list
18 [Client] curl -s localhost:*****/not_found
19                 <!DOCTYPE html>
20                 <html>
21                 <head>
22                         <meta charset="utf-8">
23                         <title>Not Found</title>
24                 </head>
25                 <body>
26                 <h1>404 Not Found</h1>
27                 </body>
28                 </html>
29 [Client] curl -s localhost:*****/user/not_found
30                 <!DOCTYPE html>
31                 <html>
32                 <head>
33                         <meta charset="utf-8">
34                         <title>Not Found</title>
35                 </head>
36                 <body>
37                 <h1>404 Not Found</h1>
38                 </body>
39                 </html>
40 [Client] curl -s localhost:*****/products/not_found
41                 <!DOCTYPE html>
42                 <html>
43                 <head>
44                         <meta charset="utf-8">
45                         <title>Not Found</title>
46                 </head>
47                 <body>
48                 <h1>404 Not Found</h1>
49                 </body>
50                 </html>