diff --git a/src/smeagol/formatting.clj b/src/smeagol/formatting.clj index 814d634..3cc5a23 100644 --- a/src/smeagol/formatting.clj +++ b/src/smeagol/formatting.clj @@ -6,7 +6,7 @@ [cemerick.url :refer (url url-encode url-decode)] [clj-yaml.core :as yaml] [markdown.core :as md] - [smeagol.test :as test] + [smeagol.testing :as testing] [smeagol.configuration :refer [config]])) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -104,7 +104,7 @@ (defn process-test "Takes at least 3 lines assuming first is a fn name, last is output, rest inside are arguments" [^String text ^Integer index] - (test/process text index)) + (testing/process text index)) (defn get-first-token diff --git a/src/smeagol/test.clj b/src/smeagol/testing.clj similarity index 99% rename from src/smeagol/test.clj rename to src/smeagol/testing.clj index 68b46fe..c39bf83 100644 --- a/src/smeagol/test.clj +++ b/src/smeagol/testing.clj @@ -1,4 +1,4 @@ -(ns smeagol.test +(ns smeagol.testing (:require [clojure.string :as s] [clojure.edn :as edn]))