Skip to content

Commit

Permalink
Update Mustache spec tests
Browse files Browse the repository at this point in the history
  • Loading branch information
athos committed Oct 25, 2022
1 parent 70ed15d commit 3a82904
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion test/pogonos/spec_test_macros.clj
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,8 @@
(defmacro import-spec-tests []
`(do ~@(for [file (->> (io/file (io/resource "mustache-spec/specs"))
file-seq
(filter #(str/ends-with? (.getName %) ".json")))]
(filter #(str/ends-with? (.getName %) ".json"))
;; currently, inheritance is not supported
;; so exclude test cases for that feature for now
(remove #(= (.getName %) "~inheritance.json")))]
(expand-spec-tests file))))

0 comments on commit 3a82904

Please sign in to comment.