Skip to content

Commit fe763bd

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

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
{{#expected~}}
9+
(is (isogram/isogram? "{{input.phrase}}"))))
10+
{{else~}}
11+
(is (not (isogram/isogram? "{{input.phrase}}")))))
12+
{{/expected}}
13+
{{/test_cases.isIsogram}}

0 commit comments

Comments
 (0)