nit: Added link to `CONTRIBUTING.md` from the README
[nit.git] / lib / popcorn / tests / res / test_example_router.res
1
2 [Client] curl -s localhost:*****
3 Site Home
4 [Client] curl -s localhost:*****/
5 Site Home
6 [Client] curl -s localhost:*****/user
7 User logged
8 User Home
9 [Client] curl -s localhost:*****/user/
10 User logged
11 User Home
12 [Client] curl -s localhost:*****/user/profile
13 User logged
14 User Profile
15 [Client] curl -s localhost:*****/not_found
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:*****/user/not_found
27 User logged
28                 <!DOCTYPE html>
29                 <html>
30                 <head>
31                         <meta charset="utf-8">
32                         <title>Not Found</title>
33                 </head>
34                 <body>
35                 <h1>404 Not Found</h1>
36                 </body>
37                 </html>
38 [Client] curl -s localhost:*****/products/not_found
39                 <!DOCTYPE html>
40                 <html>
41                 <head>
42                         <meta charset="utf-8">
43                         <title>Not Found</title>
44                 </head>
45                 <body>
46                 <h1>404 Not Found</h1>
47                 </body>
48                 </html>