Removed the primitive test code.
[jsvc.git] / src / dolda / jsvc / test / Bootstrap.java
diff --git a/src/dolda/jsvc/test/Bootstrap.java b/src/dolda/jsvc/test/Bootstrap.java
deleted file mode 100644 (file)
index ad4c38f..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-package dolda.jsvc.test;
-
-import dolda.jsvc.*;
-import dolda.jsvc.util.*;
-
-public class Bootstrap {
-    public static Responder responder() {
-       Multiplexer root = new Multiplexer();
-       root.file("test", new TestResponder());
-       root.file("", new StaticContent(Bootstrap.class, "static/index.html", false, "text/html"));
-       root.file("css", new StaticContent(Bootstrap.class, "static/test.css", false, "text/css"));
-       root.dir("foo", new StaticContent(Bootstrap.class, "static/foo", true, "text/plain; charset=utf-8"));
-       return(Misc.stdroot(root));
-    }
-}