Skip to content

Commit 43bd502

Browse files
committed
fix: all test ns have -test suffix
1 parent 83930b4 commit 43bd502

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.github/workflows/pr_visual_flow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Compile Java
2323
run: lein javac
2424
- name: Test Clojure
25-
run: lein test stencil.visual
25+
run: lein test stencil.visual-test
2626
- name: Archive diff png
2727
uses: actions/upload-artifact@v3
2828
if: failure()

test/stencil/errors.clj test/stencil/errors_test.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(ns stencil.errors
1+
(ns stencil.errors-test
22
(:import [io.github.erdos.stencil.exceptions ParsingException EvalException])
33
(:require [stencil.types :refer :all]
44
[stencil.integration :refer [test-fails]]

test/stencil/various.clj

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
(ns stencil.various
22
"Not used yet."
3-
(:require [clojure.data.xml.pu-map :as pu-map]
4-
[clojure.string :as s]
5-
[stencil.postprocess.ignored-tag :refer :all]))
3+
(:require [stencil.postprocess.ignored-tag :refer :all]))
64

75
(defn- url-decode [s] (java.net.URLDecoder/decode (str s) "UTF-8"))
86

test/stencil/visual.clj test/stencil/visual_test.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(ns stencil.visual
1+
(ns stencil.visual-test
22
(:require [clojure.java.shell]
33
[clojure.string :as str]
44
[clojure.test :refer [deftest testing use-fixtures]]

0 commit comments

Comments
 (0)