Skip to content

Commit 684c429

Browse files
committed
Merge pull request #7 from kytrinyx/recognize-haskell
Thanks!
2 parents 22fae75 + 43c1a86 commit 684c429

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

src/exercism/submission.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ var testExtensions = map[string]string{
99
"clojure": "_test.clj",
1010
"python": "_test.py",
1111
"go": "_test.go",
12+
"haskell": "_test.hs",
1213
}
1314

1415
func IsTest(filename string) bool {

src/exercism/submission_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ var isTestTests = []struct {
1414
{"bob_test.clj", true},
1515
{"bob_test.py", true},
1616
{"bob_test.go", true},
17+
{"bob_test.hs", true},
1718
{"bob.rb", false},
1819
}
1920

0 commit comments

Comments
 (0)