lib/popcorn: move examples tests to nice and tidy tests/ directories.
[nit.git] / lib / popcorn / examples / static_files / test_example_static.sav / test_example_static.res
diff --git a/lib/popcorn/examples/static_files/test_example_static.sav/test_example_static.res b/lib/popcorn/examples/static_files/test_example_static.sav/test_example_static.res
deleted file mode 100644 (file)
index 7f07ed8..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-
-[Client] curl -s localhost:*****/css/style.css
-body {
-       color: blue;
-       padding: 20px;
-}
-
-[Client] curl -s localhost:*****/js/app.js
-alert("Hello World!");
-
-[Client] curl -s localhost:*****/hello.html
-<!DOCTYPE html>
-<html>
-       <head>
-               <meta charset="UTF-8">
-
-               <title>Some Popcorn love</title>
-
-               <link rel="stylesheet" type="text/css" href="/css/style.css">
-       </head>
-       <body>
-               <h1>Hello Popcorn!</h1>
-
-               <img src="/images/trollface.jpg" alt="maybe it's a kitten?" />
-
-               <script src="/js/app.js"></script>
-       </body>
-</html>
-
-[Client] curl -s localhost:*****/
-               <!DOCTYPE html>
-               <html>
-               <head>
-                       <meta charset="utf-8">
-                       <title>Not Found</title>
-               </head>
-               <body>
-               <h1>404 Not Found</h1>
-               </body>
-               </html>
-[Client] curl -s localhost:*****/css/not_found.nit
-               <!DOCTYPE html>
-               <html>
-               <head>
-                       <meta charset="utf-8">
-                       <title>Not Found</title>
-               </head>
-               <body>
-               <h1>404 Not Found</h1>
-               </body>
-               </html>
-[Client] curl -s localhost:*****/static/css/not_found.nit
-               <!DOCTYPE html>
-               <html>
-               <head>
-                       <meta charset="utf-8">
-                       <title>Not Found</title>
-               </head>
-               <body>
-               <h1>404 Not Found</h1>
-               </body>
-               </html>
-[Client] curl -s localhost:*****/not_found.nit
-               <!DOCTYPE html>
-               <html>
-               <head>
-                       <meta charset="utf-8">
-                       <title>Not Found</title>
-               </head>
-               <body>
-               <h1>404 Not Found</h1>
-               </body>
-               </html>
\ No newline at end of file