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 c23ad50Copy full SHA for c23ad50
exercises/practice/isogram/.meta/generator.tpl
@@ -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