From a53981d5977965e20356811480ad8b956ab9d721 Mon Sep 17 00:00:00 2001 From: Tommi Reiman Date: Sat, 25 Aug 2018 15:14:37 +0300 Subject: [PATCH] test just clj with http --- .../{cljc/reitit/http_test.cljc => clj/reitit/http_test.clj} | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) rename test/{cljc/reitit/http_test.cljc => clj/reitit/http_test.clj} (99%) diff --git a/test/cljc/reitit/http_test.cljc b/test/clj/reitit/http_test.clj similarity index 99% rename from test/cljc/reitit/http_test.cljc rename to test/clj/reitit/http_test.clj index f59fdf72..f030e2f7 100644 --- a/test/cljc/reitit/http_test.cljc +++ b/test/clj/reitit/http_test.clj @@ -1,13 +1,12 @@ (ns reitit.http-test + "just Clojure before Sieppari is ported into cljs" (:require [clojure.test :refer [deftest testing is]] [clojure.set :as set] [reitit.interceptor :as interceptor] [reitit.interceptor.sieppari :as sieppari] [reitit.http :as http] [reitit.ring :as ring] - [reitit.core :as r]) - #?(:clj - (:import (clojure.lang ExceptionInfo)))) + [reitit.core :as r])) (defn interceptor [name] {:enter (fn [ctx] (update-in ctx [:request ::i] (fnil conj []) name))})