From d5a809fdf9d7fb49a442f5e9e4a4f74f285c96d2 Mon Sep 17 00:00:00 2001 From: Tommi Reiman Date: Sun, 11 Feb 2018 21:28:01 +0200 Subject: [PATCH] Dead code --- test/cljc/reitit/core_test.cljc | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/test/cljc/reitit/core_test.cljc b/test/cljc/reitit/core_test.cljc index b88933b8..83ef54c1 100644 --- a/test/cljc/reitit/core_test.cljc +++ b/test/cljc/reitit/core_test.cljc @@ -234,15 +234,3 @@ [["/a"] ["/a"]])))) (testing "can be configured to ignore" (is (not (nil? (r/router [["/a"] ["/a"]] {:conflicts (constantly nil)}))))))) - -(require '[reitit.core :as r]) - -(extend-type java.io.File - r/Expand - (expand [file options] - (r/expand - (fn [_] file) - options))) - -(r/router - ["/file" (java.io.File. "index.html")])