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.
2 parents 22fae75 + 43c1a86 commit 684c429Copy full SHA for 684c429
2 files changed
src/exercism/submission.go
@@ -9,6 +9,7 @@ var testExtensions = map[string]string{
9
"clojure": "_test.clj",
10
"python": "_test.py",
11
"go": "_test.go",
12
+ "haskell": "_test.hs",
13
}
14
15
func IsTest(filename string) bool {
src/exercism/submission_test.go
@@ -14,6 +14,7 @@ var isTestTests = []struct {
{"bob_test.clj", true},
{"bob_test.py", true},
16
{"bob_test.go", true},
17
+ {"bob_test.hs", true},
18
{"bob.rb", false},
19
20
0 commit comments