-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodingbat.cabal
More file actions
42 lines (40 loc) · 809 Bytes
/
Copy pathcodingbat.cabal
File metadata and controls
42 lines (40 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
cabal-version: 3.0
name: codingbat
version: 0.1.0.0
license: MIT
license-file: LICENSE
author: Justin Kian Romeon
maintainer: romeonjustin@gmail.com
library
exposed-modules:
Warmup1
Warmup2
String1
String2
Logic1
Logic2
List1
List2
build-depends:
base ^>=4.18.3.0,
containers
hs-source-dirs: src
default-language: Haskell2010
test-suite codingbat-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Warmup1Spec
Warmup2Spec
String1Spec
String2Spec
Logic1Spec
Logic2Spec
List1Spec
List2Spec
build-depends:
base ^>=4.18.3.0,
codingbat,
hspec
hs-source-dirs: test
default-language: Haskell2010