Skip to content

Commit c23ad50

Browse files
isogram: add generator template
1 parent b866e68 commit c23ad50

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
(ns isogram-test
2+
(:require [clojure.test :refer [deftest testing is]]
3+
isogram))
4+
5+
{{#test_cases.isIsogram~}}
6+
(deftest isogram?_test_{{idx}}
7+
(testing "{{description}}"
8+
(is ({{#expected~}}true?{{else}}false?{{/expected}}) (isogram/isogram? "{{input.phrase}}")))))
9+
{{/expected}}
10+
{{/test_cases.isIsogram}}

0 commit comments

Comments
 (0)