nit: Added link to `CONTRIBUTING.md` from the README
[nit.git] / lib / popcorn / tests / res / test_routes.res
1
2 [Client] curl -s localhost:*****
3 /
4 [Client] curl -s localhost:*****/
5 /
6 [Client] curl -s localhost:*****/misc
7 /misc/everything
8 [Client] curl -s localhost:*****/misc/foo
9 /misc/everything
10 [Client] curl -s localhost:*****/misc/foo/bar
11 /misc/everything
12 [Client] curl -s localhost:*****/misc/foo/baz
13 /misc/everything
14 [Client] curl -s localhost:*****/user
15 /user
16 [Client] curl -s localhost:*****/user/
17 /user
18 [Client] curl -s localhost:*****/user/id
19 /user/id
20 [Client] curl -s localhost:*****/user/id/profile
21 /user/id/profile
22 [Client] curl -s localhost:*****/user/id/misc/foo
23 /user/id/misc/everything
24 [Client] curl -s localhost:*****/user/id/misc/foo/bar
25 /user/id/misc/everything
26 [Client] curl -s localhost:*****/user/id/misc/foo/bar/baz
27 /user/id/misc/everything
28 [Client] curl -s localhost:*****/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>
39 [Client] curl -s localhost:*****/user/id/not_found
40                 <!DOCTYPE html>
41                 <html>
42                 <head>
43                         <meta charset="utf-8">
44                         <title>Not Found</title>
45                 </head>
46                 <body>
47                 <h1>404 Not Found</h1>
48                 </body>
49                 </html>