We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b866e68 commit fe763bdCopy full SHA for fe763bd
exercises/practice/isogram/.meta/generator.template
@@ -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