* Add some additional libraries to test
Also improved docs around add-libtest
Close #1137
Close #1128
* Add method needed for supporting pyramid
Pyramid tests passed locally but that was on jvm
* Remove pyramid tests and do in subsequent PR
* Revert "Add method needed for supporting pyramid"
This reverts commit 4d84a2a2ac.
* Skip exoscale tests for windows since most aren't windows compatible
14 lines
351 B
Clojure
14 lines
351 B
Clojure
(ns com.wsscode.misc.macros-test
|
|
(:require
|
|
[clojure.test :refer [deftest is are run-tests testing]]
|
|
[com.wsscode.misc.macros :as macros]))
|
|
|
|
(deftest full-symbol-test
|
|
(is (= (macros/full-symbol
|
|
'known/foo
|
|
"bar")
|
|
'known/foo))
|
|
(is (= (macros/full-symbol
|
|
'foo
|
|
"bar")
|
|
'bar/foo)))
|