From bae946dac419b6e5e4da957ae66cbcdbc838aea8 Mon Sep 17 00:00:00 2001 From: Vlad Bokov Date: Fri, 8 Feb 2019 14:45:32 +0700 Subject: [PATCH] Rename test -> testing --- src/smeagol/formatting.clj | 4 ++-- src/smeagol/{test.clj => testing.clj} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename src/smeagol/{test.clj => testing.clj} (99%) 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]))