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 476f6c0 commit 3b7d360Copy full SHA for 3b7d360
.gitignore
@@ -0,0 +1,2 @@
1
+/dist
2
+/dist-newstyle
Setup.hs
+import Distribution.Simple
+main = defaultMain
hspec-codewars.cabal
@@ -0,0 +1,20 @@
+cabal-version: >=1.10
+
3
+name: hspec-codewars
4
+version: 0.1.0
5
+synopsis: Utility functions for testing on Codewars with Hspec
6
+license: MIT
7
+build-type: Simple
8
9
+library
10
+ hs-source-dirs:
11
+ src
12
+ build-depends:
13
+ base ==4.*
14
+ , hspec ==2.*
15
+ , HUnit ==1.*
16
+ , haskell-src-exts ==1.*
17
+ exposed-modules:
18
+ Test.Hspec.Codewars
19
+ default-language:
20
+ Haskell2010
0 commit comments