Rename test -> testing

This commit is contained in:
Vlad Bokov 2019-02-08 14:45:32 +07:00
parent 1af3f5010d
commit bae946dac4
No known key found for this signature in database
GPG key ID: 4D88DD3A10EA1D63
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -1,4 +1,4 @@
(ns smeagol.test
(ns smeagol.testing
(:require [clojure.string :as s]
[clojure.edn :as edn]))