lib/popcorn: move examples tests to nice and tidy tests/ directories.
[nit.git] / lib / popcorn / examples / static_files / test_example_static_default.sav / test_example_static_default.res
diff --git a/lib/popcorn/examples/static_files/test_example_static_default.sav/test_example_static_default.res b/lib/popcorn/examples/static_files/test_example_static_default.sav/test_example_static_default.res
deleted file mode 100644 (file)
index 59392f6..0000000
+++ /dev/null
@@ -1,88 +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>Some Popcorn love</title>
-
-               <link rel="stylesheet" type="text/css" href="/css/style.css">
-       </head>
-       <body>
-               <h1>Default Page</h1>
-       </body>
-</html>
-
-[Client] curl -s localhost:*****/css/not_found.nit
-<!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>Default Page</h1>
-       </body>
-</html>
-
-[Client] curl -s localhost:*****/static/css/not_found.nit
-<!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>Default Page</h1>
-       </body>
-</html>
-
-[Client] curl -s localhost:*****/not_found.nit
-<!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>Default Page</h1>
-       </body>
-</html>