You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
421 B
Clojure

(ns cryogen-core.classpath-able-io-test
(:require [clojure.test :refer :all]
[clojure.string :as s]
[cryogen-core.io :as sut]))
(def theme "bootstrap4-test")
(def target "target/tmp")
(deftest test-copy-resources-from-theme
(is (do
(sut/copy-resources-from-theme theme target)
(verify-dir-exists (str target "/js")
(verify-file-exists (str target "/js/dummy.js")))))