Skip to content

Commit a6de664

Browse files
committed
Merge pull request exercism#7 from kytrinyx/recognize-haskell
Thanks!
2 parents d2073ad + b2b50ed commit a6de664

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)